Skip to content

Commit 4a23400

Browse files
committed
Bump
1 parent 7d080d1 commit 4a23400

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ configure_package_config_file("${CONFIG_TEMPLATE_FILE}" "${CONFIG_FILE}"
6060

6161
install(FILES "${CONFIG_FILE}" DESTINATION "${INSTALL_CONFIG_DIR}")
6262

63-
write_basic_package_version_file("${PROJECT_NAME}-config-version.cmake" VERSION 0.4.4 COMPATIBILITY AnyNewerVersion)
63+
write_basic_package_version_file("${PROJECT_NAME}-config-version.cmake" VERSION 0.4.5 COMPATIBILITY AnyNewerVersion)
6464
install(FILES "${PROJECT_BINARY_DIR}/${PROJECT_NAME}-config-version.cmake" DESTINATION "${INSTALL_CONFIG_DIR}")
6565

6666
export(EXPORT "${TARGETS_EXPORT_NAME}" FILE "${TARGETS_EXPORT_FILE}" NAMESPACE "${PROJECT_NAME}::")

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pub fn build(b: *std.Build) void {
44
const target = b.standardTargetOptions(.{});
55
const with_benchmark: bool = b.option(bool, "with-benchmark", "Compile benchmark") orelse false;
66
const optimize = b.standardOptimizeOption(.{ .preferred_optimize_mode = .ReleaseFast });
7-
const version = std.SemanticVersion.parse("0.4.4") catch unreachable;
7+
const version = std.SemanticVersion.parse("0.4.5") catch unreachable;
88

99
const lib = b.addLibrary(.{
1010
.name = "aegis",

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = .aegis,
3-
.version = "0.4.4",
3+
.version = "0.4.5",
44
.minimum_zig_version = "0.15.1",
55
.paths = .{ "README.md", "LICENSE", "src", "build.zig", "build.zig.zon" },
66
.fingerprint = 0x5e23831cc5883dc1,

0 commit comments

Comments
 (0)