summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitchell Hashimoto <m@mitchellh.com>2025-10-08 10:02:15 -0700
committerMitchell Hashimoto <m@mitchellh.com>2025-10-08 10:02:24 -0700
commit7071a22cb54ffbbe0b9d46aeec9954f9c25cd69c (patch)
tree669e64cc1edebf2a58932715dfdf9d10615a0e58
parenta586b47dc9310c0aa3afdc69dbd32aa013ae39be (diff)
-rw-r--r--build.zig.zon2
-rw-r--r--dist/linux/com.mitchellh.ghostty.metainfo.xml.in4
-rw-r--r--nix/package.nix2
-rw-r--r--src/build/Config.zig2
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 @@
<releases>
<!-- TODO: Generate this automatically -->
- <release version="1.2.1" date="2025-10-06">
- <url type="details">https://ghostty.org/docs/install/release-notes/1-2-1</url>
+ <release version="1.2.2" date="2025-10-08">
+ <url type="details">https://ghostty.org/docs/install/release-notes/1-2-2</url>
</release>
</releases>
</component>
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,