Skip to content

Commit

Permalink
feat: release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kamadorueda committed Feb 18, 2022
1 parent 0d09692 commit 599cf11
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 21 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ description = "The Uncompromising Nix Code Formatter"
edition = "2021"
name = "alejandra"
repository = "https://github.com/kamadorueda/alejandra"
version = "0.2.0"
version = "0.3.0"
5 changes: 2 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
outputs = inputs: let
commit = inputs.self.shortRev or "dirty";
date = inputs.self.lastModifiedDate or inputs.self.lastModified or "19700101";
version = "0.2.0+${builtins.substring 0 8 date}.${commit}";
version = "0.3.0+${builtins.substring 0 8 date}.${commit}";

nixpkgsForHost = host:
import inputs.nixpkgs {
Expand Down Expand Up @@ -57,8 +57,7 @@
defaultPackage."x86_64-darwin" = packages."x86_64-darwin"."alejandra-x86_64-apple-darwin";
defaultPackage."x86_64-linux" = packages."x86_64-linux"."alejandra-x86_64-unknown-linux-gnu";

devShell."x86_64-linux" =
with nixpkgs."x86_64-linux";
devShell."x86_64-linux" = with nixpkgs."x86_64-linux";
mkShell {
name = "alejandra";
packages = [
Expand Down
12 changes: 6 additions & 6 deletions front/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion front/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ description = "The Uncompromising Nix Code Formatter"
edition = "2021"
name = "alejandra-front"
repository = "https://github.com/kamadorueda/alejandra"
version = "0.2.0"
version = "0.3.0"
6 changes: 3 additions & 3 deletions front/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions front/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
];
shellHook = ''
export LD_LIBRARY_PATH=${nixpkgs.gcc.cc.lib}/lib:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH=${nixpkgs.zlib}/lib:$LD_LIBRARY_PATH
'';
};
};
Expand Down
2 changes: 1 addition & 1 deletion installers/aarch64-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

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

Expand Down
2 changes: 1 addition & 1 deletion installers/x86_64-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

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

Expand Down

0 comments on commit 599cf11

Please sign in to comment.