Skip to content

Commit 599cf11

Browse files
committed
feat: release 0.3.0
1 parent 0d09692 commit 599cf11

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ description = "The Uncompromising Nix Code Formatter"
1313
edition = "2021"
1414
name = "alejandra"
1515
repository = "https://github.com/kamadorueda/alejandra"
16-
version = "0.2.0"
16+
version = "0.3.0"

flake.nix

+2-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
outputs = inputs: let
1212
commit = inputs.self.shortRev or "dirty";
1313
date = inputs.self.lastModifiedDate or inputs.self.lastModified or "19700101";
14-
version = "0.2.0+${builtins.substring 0 8 date}.${commit}";
14+
version = "0.3.0+${builtins.substring 0 8 date}.${commit}";
1515

1616
nixpkgsForHost = host:
1717
import inputs.nixpkgs {
@@ -57,8 +57,7 @@
5757
defaultPackage."x86_64-darwin" = packages."x86_64-darwin"."alejandra-x86_64-apple-darwin";
5858
defaultPackage."x86_64-linux" = packages."x86_64-linux"."alejandra-x86_64-unknown-linux-gnu";
5959

60-
devShell."x86_64-linux" =
61-
with nixpkgs."x86_64-linux";
60+
devShell."x86_64-linux" = with nixpkgs."x86_64-linux";
6261
mkShell {
6362
name = "alejandra";
6463
packages = [

front/Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ description = "The Uncompromising Nix Code Formatter"
1414
edition = "2021"
1515
name = "alejandra-front"
1616
repository = "https://github.com/kamadorueda/alejandra"
17-
version = "0.2.0"
17+
version = "0.3.0"

front/flake.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front/flake.nix

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
];
3131
shellHook = ''
3232
export LD_LIBRARY_PATH=${nixpkgs.gcc.cc.lib}/lib:$LD_LIBRARY_PATH
33+
export LD_LIBRARY_PATH=${nixpkgs.zlib}/lib:$LD_LIBRARY_PATH
3334
'';
3435
};
3536
};

installers/aarch64-linux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
releases=https://github.com/kamadorueda/alejandra/releases/download/
44
target=alejandra-aarch64-unknown-linux-musl
5-
version=0.2.0
5+
version=0.3.0
66

77
curl -o alejandra -L "${releases}/${version}/${target}"
88

installers/x86_64-linux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
releases=https://github.com/kamadorueda/alejandra/releases/download/
44
target=alejandra-x86_64-unknown-linux-musl
5-
version=0.2.0
5+
version=0.3.0
66

77
curl -o alejandra -L "${releases}/${version}/${target}"
88

0 commit comments

Comments
 (0)