From 1201bc27d288db6ffae007ca5b0693f3cd77873e Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 15 Sep 2025 11:01:07 -0700 Subject: [PATCH] bump the version for development --- build.zig.zon | 2 +- nix/package.nix | 2 +- src/build/Config.zig | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.zig.zon b/build.zig.zon index 105543e58..efbe367d1 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = .ghostty, - .version = "1.2.0", + .version = "1.2.1", .paths = .{""}, .fingerprint = 0x64407a2a0b4147e5, .dependencies = .{ diff --git a/nix/package.nix b/nix/package.nix index efe32c644..fcc80b9dc 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -40,7 +40,7 @@ in stdenv.mkDerivation (finalAttrs: { pname = "ghostty"; - version = "1.2.0"; + version = "1.2.1"; # 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 b4759b45c..296a6a3b4 100644 --- a/src/build/Config.zig +++ b/src/build/Config.zig @@ -20,7 +20,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 = 2, .patch = 0 }; +const app_version: std.SemanticVersion = .{ .major = 1, .minor = 2, .patch = 1 }; /// Standard build configuration options. optimize: std.builtin.OptimizeMode,