aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-10-28 03:23:40 +0100
committerAkshay <[email protected]>2021-10-28 03:23:40 +0100
commitaa1a85527613ca8cabd5b7134ab46833564439c7 (patch)
tree964681980bf5f48c307f35af8469164e09b89b0c
parent3c9a675b9d776bf2210803d582e9af88f9df2631 (diff)
bump to v0.2.4v0.2.4
-rw-r--r--Cargo.lock2
-rw-r--r--bin/Cargo.toml2
-rw-r--r--flake.nix4
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index d4df006..cb4a625 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.3" 391version = "0.2.4"
392dependencies = [ 392dependencies = [
393 "ariadne", 393 "ariadne",
394 "clap", 394 "clap",
diff --git a/bin/Cargo.toml b/bin/Cargo.toml
index 78f4b9c..92463bc 100644
--- a/bin/Cargo.toml
+++ b/bin/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "statix" 2name = "statix"
3version = "0.2.3" 3version = "0.2.4"
4edition = "2018" 4edition = "2018"
5license = "MIT" 5license = "MIT"
6 6
diff --git a/flake.nix b/flake.nix
index 55af012..bb28517 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.3"; 52 version = "v0.2.4";
53 src = builtins.path { 53 src = builtins.path {
54 path = ./.; 54 path = ./.;
55 name = "statix"; 55 name = "statix";
@@ -99,7 +99,7 @@
99 99
100 devShell = forAllSystems (system: 100 devShell = forAllSystems (system:
101 let 101 let
102 pkgs = nixpkgsFor.${system}; 102 pkgs = nixpkgsFor."${system}";
103 inherit (rustChannel pkgs) rust rust-src rust-analysis; 103 inherit (rustChannel pkgs) rust rust-src rust-analysis;
104 in 104 in
105 with pkgs; 105 with pkgs;