next version will be 1.1.0

This commit is contained in:
Mitchell Hashimoto
2025-01-30 07:18:07 -08:00
parent 04d36361b1
commit a62b26cd2f
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
.{
.name = "ghostty",
.version = "1.0.2",
.version = "1.1.0",
.paths = .{""},
.dependencies = .{
// Zig libs

View File

@ -114,7 +114,7 @@
in
stdenv.mkDerivation (finalAttrs: {
pname = "ghostty";
version = "1.0.2";
version = "1.1.0";
inherit src;
nativeBuildInputs =

View File

@ -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,