From 7071a22cb54ffbbe0b9d46aeec9954f9c25cd69c Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 8 Oct 2025 10:02:15 -0700 Subject: [PATCH] v1.2.2 --- build.zig.zon | 2 +- dist/linux/com.mitchellh.ghostty.metainfo.xml.in | 4 ++-- nix/package.nix | 2 +- src/build/Config.zig | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build.zig.zon b/build.zig.zon index eee3f6518..9daf37cd7 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = .ghostty, - .version = "1.2.1", + .version = "1.2.2", .paths = .{""}, .fingerprint = 0x64407a2a0b4147e5, .minimum_zig_version = "0.14.1", diff --git a/dist/linux/com.mitchellh.ghostty.metainfo.xml.in b/dist/linux/com.mitchellh.ghostty.metainfo.xml.in index fc8b92adc..ed7a60ec0 100644 --- a/dist/linux/com.mitchellh.ghostty.metainfo.xml.in +++ b/dist/linux/com.mitchellh.ghostty.metainfo.xml.in @@ -52,8 +52,8 @@ - - https://ghostty.org/docs/install/release-notes/1-2-1 + + https://ghostty.org/docs/install/release-notes/1-2-2 diff --git a/nix/package.nix b/nix/package.nix index fcc80b9dc..511b5129b 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -40,7 +40,7 @@ in stdenv.mkDerivation (finalAttrs: { pname = "ghostty"; - version = "1.2.1"; + version = "1.2.2"; # 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 ab899a4fa..edbb1a752 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 = 1 }; +const app_version: std.SemanticVersion = .{ .major = 1, .minor = 2, .patch = 2 }; /// Standard build configuration options. optimize: std.builtin.OptimizeMode,