Skip to content

Commit 1c3693c

Browse files
authored
version bump for development (#6928)
2 parents 4942794 + 27978ef commit 1c3693c

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.3",
3+
.version = "1.1.4",
44
.paths = .{""},
55
.fingerprint = 0x64407a2a0b4147e5,
66
.dependencies = .{

nix/package.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
in
4040
stdenv.mkDerivation (finalAttrs: {
4141
pname = "ghostty";
42-
version = "1.1.3";
42+
version = "1.1.4";
4343

4444
# We limit source like this to try and reduce the amount of rebuilds as possible
4545
# thus we only provide the source that is needed for the build

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 = 3 };
22+
const app_version: std.SemanticVersion = .{ .major = 1, .minor = 1, .patch = 4 };
2323

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

0 commit comments

Comments
 (0)