Skip to content

Commit

Permalink
up all the metadata to 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Feb 13, 2025
1 parent ed60e07 commit 710ea1c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.{
.name = "ghostty",
.version = "1.1.1",
.version = "1.1.2",
.paths = .{""},
.dependencies = .{
// Zig libs
Expand Down
2 changes: 1 addition & 1 deletion nix/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
in
stdenv.mkDerivation (finalAttrs: {
pname = "ghostty";
version = "1.1.1";
version = "1.1.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
Expand Down
2 changes: 1 addition & 1 deletion src/build/Config.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 1 };
const app_version: std.SemanticVersion = .{ .major = 1, .minor = 1, .patch = 2 };

/// Standard build configuration options.
optimize: std.builtin.OptimizeMode,
Expand Down

0 comments on commit 710ea1c

Please sign in to comment.