Skip to content

Commit

Permalink
update version for development
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Jan 30, 2025
1 parent dda242c commit c5508e7
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.0",
.version = "1.1.1",
.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 @@ -114,7 +114,7 @@
in
stdenv.mkDerivation (finalAttrs: {
pname = "ghostty";
version = "1.1.0";
version = "1.1.1";
inherit src;

nativeBuildInputs =
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 = 0 };
const app_version: std.SemanticVersion = .{ .major = 1, .minor = 1, .patch = 1 };

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

0 comments on commit c5508e7

Please sign in to comment.