Skip to content

Commit f43b52f

Browse files
committed
Bump
1 parent 75a4a8b commit f43b52f

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
@@ -54,7 +54,7 @@ configure_package_CONFIG_FILE("${CONFIG_TEMPLATE_FILE}" "${CONFIG_FILE}"
5454

5555
install(FILES "${CONFIG_FILE}" DESTINATION "${INSTALL_CONFIG_DIR}")
5656

57-
write_basic_package_version_file("${PROJECT_NAME}-config-version.cmake" VERSION 0.4.1 COMPATIBILITY AnyNewerVersion)
57+
write_basic_package_version_file("${PROJECT_NAME}-config-version.cmake" VERSION 0.4.2 COMPATIBILITY AnyNewerVersion)
5858
install(FILES "${PROJECT_BINARY_DIR}/${PROJECT_NAME}-config-version.cmake" DESTINATION "${INSTALL_CONFIG_DIR}")
5959

6060
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.1") catch unreachable;
7+
const version = std.SemanticVersion.parse("0.4.2") 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.1",
3+
.version = "0.4.2",
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)