From a62b26cd2fac4d3685aeec6aeebeaf2ad5300fc9 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 30 Jan 2025 07:18:07 -0800 Subject: [PATCH] next version will be 1.1.0 --- build.zig.zon | 2 +- nix/package.nix | 2 +- src/build/Config.zig | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.zig.zon b/build.zig.zon index a8f45e6ea..5839b090f 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = "ghostty", - .version = "1.0.2", + .version = "1.1.0", .paths = .{""}, .dependencies = .{ // Zig libs diff --git a/nix/package.nix b/nix/package.nix index 2f7825a56..6f69be8d7 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -114,7 +114,7 @@ in stdenv.mkDerivation (finalAttrs: { pname = "ghostty"; - version = "1.0.2"; + version = "1.1.0"; inherit src; nativeBuildInputs = diff --git a/src/build/Config.zig b/src/build/Config.zig index c6f0e6d09..c832b77ad 100644 --- a/src/build/Config.zig +++ b/src/build/Config.zig @@ -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 = 0, .patch = 2 }; +const app_version: std.SemanticVersion = .{ .major = 1, .minor = 1, .patch = 0 }; /// Standard build configuration options. optimize: std.builtin.OptimizeMode,