summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitchell Hashimoto <m@mitchellh.com>2025-02-13 15:31:07 -0800
committerMitchell Hashimoto <m@mitchellh.com>2025-03-23 13:47:56 -0700
commit67650c273a9cb2a2472425811dd8061a594a1779 (patch)
tree2c00e2e7d07851b1cc9a22780c08e81574f9f50e
parentee963f62968264157003d84d579b46b9df2e7806 (diff)
up versions for development
-rw-r--r--build.zig.zon2
-rw-r--r--nix/package.nix2
-rw-r--r--src/build/Config.zig2
3 files changed, 3 insertions, 3 deletions
diff --git a/build.zig.zon b/build.zig.zon
index 7d157372a..06155d83e 100644
--- a/build.zig.zon
+++ b/build.zig.zon
@@ -1,6 +1,6 @@
.{
.name = "ghostty",
- .version = "1.1.2",
+ .version = "1.1.3",
.paths = .{""},
.dependencies = .{
// Zig libs
diff --git a/nix/package.nix b/nix/package.nix
index b4ed3738a..45f189cf5 100644
--- a/nix/package.nix
+++ b/nix/package.nix
@@ -48,7 +48,7 @@
in
stdenv.mkDerivation (finalAttrs: {
pname = "ghostty";
- version = "1.1.2";
+ version = "1.1.3";
# We limit source like this to try and reduce the amount of rebuilds as possible
# thus we only provide the source that is needed for the build
diff --git a/src/build/Config.zig b/src/build/Config.zig
index 140fddbc1..7c8605c73 100644
--- a/src/build/Config.zig
+++ b/src/build/Config.zig
@@ -19,7 +19,7 @@ const GitVersion = @import("GitVersion.zig");
/// TODO: When Zig 0.14 is released, derive this from build.zig.zon directly.
/// Until then this MUST match build.zig.zon and should always be the
/// _next_ version to release.
-const app_version: std.SemanticVersion = .{ .major = 1, .minor = 1, .patch = 2 };
+const app_version: std.SemanticVersion = .{ .major = 1, .minor = 1, .patch = 3 };
/// Standard build configuration options.
optimize: std.builtin.OptimizeMode,