parent
a586b47dc9
commit
7071a22cb5
|
|
@ -1,6 +1,6 @@
|
|||
.{
|
||||
.name = .ghostty,
|
||||
.version = "1.2.1",
|
||||
.version = "1.2.2",
|
||||
.paths = .{""},
|
||||
.fingerprint = 0x64407a2a0b4147e5,
|
||||
.minimum_zig_version = "0.14.1",
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue