diff options
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | bin/Cargo.toml | 2 | ||||
-rw-r--r-- | flake.nix | 2 | ||||
-rw-r--r-- | release.txt | 8 |
4 files changed, 11 insertions, 3 deletions
@@ -388,7 +388,7 @@ checksum = "b203e79e90905594272c1c97c7af701533d42adaab0beb3859018e477d54a3b0" | |||
388 | 388 | ||
389 | [[package]] | 389 | [[package]] |
390 | name = "statix" | 390 | name = "statix" |
391 | version = "0.2.5" | 391 | version = "0.3.0" |
392 | dependencies = [ | 392 | dependencies = [ |
393 | "ariadne", | 393 | "ariadne", |
394 | "clap", | 394 | "clap", |
diff --git a/bin/Cargo.toml b/bin/Cargo.toml index cc15c23..1f73ee7 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml | |||
@@ -1,6 +1,6 @@ | |||
1 | [package] | 1 | [package] |
2 | name = "statix" | 2 | name = "statix" |
3 | version = "0.2.5" | 3 | version = "0.3.0" |
4 | edition = "2018" | 4 | edition = "2018" |
5 | license = "MIT" | 5 | license = "MIT" |
6 | authors = [ "Akshay <[email protected]>" ] | 6 | authors = [ "Akshay <[email protected]>" ] |
@@ -49,7 +49,7 @@ | |||
49 | 49 | ||
50 | statix = with final; pkgs.stdenv.mkDerivation { | 50 | statix = with final; pkgs.stdenv.mkDerivation { |
51 | pname = "statix"; | 51 | pname = "statix"; |
52 | version = "v0.2.5"; | 52 | version = "v0.3.0"; |
53 | src = builtins.path { | 53 | src = builtins.path { |
54 | path = ./.; | 54 | path = ./.; |
55 | name = "statix"; | 55 | name = "statix"; |
diff --git a/release.txt b/release.txt new file mode 100644 index 0000000..f0b45ae --- /dev/null +++ b/release.txt | |||
@@ -0,0 +1,8 @@ | |||
1 | Release checklist: | ||
2 | |||
3 | - bump version in Cargo.toml | ||
4 | - bump version in flake.nix | ||
5 | - run `cargo build --release` to bump Cargo.lock | ||
6 | - run nix-build and update cachix cache | ||
7 | - tag commit with latest version | ||
8 | - push tag and commit to all remotes | ||