up the version to 1.0.1 everywhere for dev

This commit is contained in:
Mitchell Hashimoto
2024-12-26 15:21:35 -08:00
parent 4b4d4062df
commit 35b9ceee21
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ comptime {
} }
/// The version of the next release. /// The version of the next release.
const app_version = std.SemanticVersion{ .major = 1, .minor = 0, .patch = 0 }; const app_version = std.SemanticVersion{ .major = 1, .minor = 0, .patch = 1 };
pub fn build(b: *std.Build) !void { pub fn build(b: *std.Build) !void {
const optimize = b.standardOptimizeOption(.{}); const optimize = b.standardOptimizeOption(.{});

View File

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

View File

@ -110,7 +110,7 @@
in in
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "ghostty"; pname = "ghostty";
version = "1.0.0"; version = "1.0.1";
inherit src; inherit src;
nativeBuildInputs = [ nativeBuildInputs = [