Skip to content

Commit 9865507

Browse files
committed
Bump
1 parent 45399c6 commit 9865507

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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.3.0 COMPATIBILITY AnyNewerVersion)
57+
write_basic_package_version_file("${PROJECT_NAME}-config-version.cmake" VERSION 0.3.1 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
@@ -3,7 +3,7 @@ const std = @import("std");
33
pub fn build(b: *std.Build) void {
44
const target = b.standardTargetOptions(.{});
55
const optimize = b.standardOptimizeOption(.{ .preferred_optimize_mode = .ReleaseFast });
6-
const version = std.SemanticVersion.parse("0.3.0") catch unreachable;
6+
const version = std.SemanticVersion.parse("0.3.1") catch unreachable;
77

88
const lib = b.addStaticLibrary(.{
99
.name = "aegis",

0 commit comments

Comments
 (0)