aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-10-29 14:03:53 +0100
committerAkshay <[email protected]>2021-10-29 14:14:14 +0100
commita34ab7a09f37fd319ec4444417a0edb6ba4058a8 (patch)
tree0596074b46a1e8ca1435b0a98abbc26695737d8f
parent1a97cce01f8e49b33bf28cbcdfeb3c8aefd809a5 (diff)
bump to v0.3.0v0.3.0
also add release checklist
-rw-r--r--Cargo.lock2
-rw-r--r--bin/Cargo.toml2
-rw-r--r--flake.nix2
-rw-r--r--release.txt8
4 files changed, 11 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1a75d27..399283e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -388,7 +388,7 @@ checksum = "b203e79e90905594272c1c97c7af701533d42adaab0beb3859018e477d54a3b0"
388 388
389[[package]] 389[[package]]
390name = "statix" 390name = "statix"
391version = "0.2.5" 391version = "0.3.0"
392dependencies = [ 392dependencies = [
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]
2name = "statix" 2name = "statix"
3version = "0.2.5" 3version = "0.3.0"
4edition = "2018" 4edition = "2018"
5license = "MIT" 5license = "MIT"
6authors = [ "Akshay <[email protected]>" ] 6authors = [ "Akshay <[email protected]>" ]
diff --git a/flake.nix b/flake.nix
index 765bea3..f7b44e4 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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 @@
1Release 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