Skip to content

Commit c5508e7

Browse files
committed
update version for development
1 parent dda242c commit c5508e7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.zig.zon

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = "ghostty",
3-
.version = "1.1.0",
3+
.version = "1.1.1",
44
.paths = .{""},
55
.dependencies = .{
66
// Zig libs

nix/package.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
in
115115
stdenv.mkDerivation (finalAttrs: {
116116
pname = "ghostty";
117-
version = "1.1.0";
117+
version = "1.1.1";
118118
inherit src;
119119

120120
nativeBuildInputs =

src/build/Config.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const GitVersion = @import("GitVersion.zig");
1919
/// TODO: When Zig 0.14 is released, derive this from build.zig.zon directly.
2020
/// Until then this MUST match build.zig.zon and should always be the
2121
/// _next_ version to release.
22-
const app_version: std.SemanticVersion = .{ .major = 1, .minor = 1, .patch = 0 };
22+
const app_version: std.SemanticVersion = .{ .major = 1, .minor = 1, .patch = 1 };
2323

2424
/// Standard build configuration options.
2525
optimize: std.builtin.OptimizeMode,

0 commit comments

Comments
 (0)