Skip to content

Commit 7b667dd

Browse files
committed
Bump
1 parent dc517fe commit 7b667dd

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
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.10)
2-
project(aegis LANGUAGES C VERSION 0.4.5)
2+
project(aegis LANGUAGES C VERSION 0.9.0)
33

44
include(CMakePackageConfigHelpers)
55
include(GNUInstallDirs)

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.5") catch unreachable;
7+
const version = std.SemanticVersion.parse("0.9.0") catch unreachable;
88
const linkage = b.option(std.builtin.LinkMode, "linkage", "Link mode") orelse .static;
99

1010
const lib = b.addLibrary(.{

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.5",
3+
.version = "0.9.0",
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)