1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-07-31 04:27:45 +00:00

feat: release 0.3.1

This commit is contained in:
Kevin Amado 2022-02-20 19:03:34 -05:00
parent 211151450f
commit c54e6c0a71
10 changed files with 34 additions and 34 deletions

6
Cargo.lock generated
View file

@ -4,7 +4,7 @@ version = 3
[[package]] [[package]]
name = "alejandra" name = "alejandra"
version = "0.3.0" version = "0.3.1"
dependencies = [ dependencies = [
"clap", "clap",
"indoc", "indoc",
@ -169,9 +169,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.118" version = "0.2.119"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06e509672465a0504304aa87f9f176f2b2b716ed8fb105ebe5c02dc6dce96a94" checksum = "1bf2e165bb3457c8e098ea76f3e3bc9db55f87aa90d52d0e6be741470916aaa4"
[[package]] [[package]]
name = "memchr" name = "memchr"

View file

@ -13,4 +13,4 @@ description = "The Uncompromising Nix Code Formatter"
edition = "2021" edition = "2021"
name = "alejandra" name = "alejandra"
repository = "https://github.com/kamadorueda/alejandra" repository = "https://github.com/kamadorueda/alejandra"
version = "0.3.0" version = "0.3.1"

View file

@ -105,11 +105,11 @@ You can download a binary for your platform,
make it executable (`$ chmod +x`) make it executable (`$ chmod +x`)
and have fun! and have fun!
- [aarch64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.3.0/alejandra-aarch64-unknown-linux-musl) - [aarch64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.3.1/alejandra-aarch64-unknown-linux-musl)
- [armv6l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/0.3.0/alejandra-armv6l-unknown-linux-musleabihf) - [armv6l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/0.3.1/alejandra-armv6l-unknown-linux-musleabihf)
- [armv7l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/0.3.0/alejandra-armv7l-unknown-linux-musleabihf) - [armv7l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/0.3.1/alejandra-armv7l-unknown-linux-musleabihf)
- [i686-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.3.0/alejandra-i686-unknown-linux-musl) - [i686-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.3.1/alejandra-i686-unknown-linux-musl)
- [x86_64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.3.0/alejandra-x86_64-unknown-linux-musl) - [x86_64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.3.1/alejandra-x86_64-unknown-linux-musl)
Alternatively there is an automated method for some platforms. Alternatively there is an automated method for some platforms.
It needs: It needs:
@ -140,7 +140,7 @@ $ /path/to/alejandra --help
- Nix with [Flakes](https://nixos.wiki/wiki/Flakes): - Nix with [Flakes](https://nixos.wiki/wiki/Flakes):
```bash ```bash
$ nix profile install github:kamadorueda/alejandra $ nix profile install github:kamadorueda/alejandra/0.3.1
``` ```
- Nix stable: - Nix stable:
@ -148,10 +148,10 @@ $ /path/to/alejandra --help
Pick one depending on your platform: Pick one depending on your platform:
```bash ```bash
$ nix-env -ivA aarch64-darwin -f https://github.com/kamadorueda/alejandra/tarball/0.3.0 $ nix-env -ivA aarch64-darwin -f https://github.com/kamadorueda/alejandra/tarball/0.3.1
$ nix-env -ivA aarch64-linux -f https://github.com/kamadorueda/alejandra/tarball/0.3.0 $ nix-env -ivA aarch64-linux -f https://github.com/kamadorueda/alejandra/tarball/0.3.1
$ nix-env -ivA x86_64-darwin -f https://github.com/kamadorueda/alejandra/tarball/0.3.0 $ nix-env -ivA x86_64-darwin -f https://github.com/kamadorueda/alejandra/tarball/0.3.1
$ nix-env -ivA x86_64-linux -f https://github.com/kamadorueda/alejandra/tarball/0.3.0 $ nix-env -ivA x86_64-linux -f https://github.com/kamadorueda/alejandra/tarball/0.3.1
``` ```
Then run Alejandra with: Then run Alejandra with:

6
flake.lock generated
View file

@ -18,11 +18,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1644972330, "lastModified": 1645013224,
"narHash": "sha256-6V2JFpTUzB9G+KcqtUR1yl7f6rd9495YrFECslEmbGw=", "narHash": "sha256-b7OEC8vwzJv3rsz9pwnTX2LQDkeOWz2DbKypkVvNHXc=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "19574af0af3ffaf7c9e359744ed32556f34536bd", "rev": "b66b39216b1fef2d8c33cc7a5c72d8da80b79970",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -11,7 +11,7 @@
outputs = inputs: let outputs = inputs: let
commit = inputs.self.shortRev or "dirty"; commit = inputs.self.shortRev or "dirty";
date = inputs.self.lastModifiedDate or inputs.self.lastModified or "19700101"; date = inputs.self.lastModifiedDate or inputs.self.lastModified or "19700101";
version = "0.3.0+${builtins.substring 0 8 date}.${commit}"; version = "0.3.1+${builtins.substring 0 8 date}.${commit}";
nixpkgsForHost = host: nixpkgsForHost = host:
import inputs.nixpkgs { import inputs.nixpkgs {

8
front/Cargo.lock generated
View file

@ -4,7 +4,7 @@ version = 3
[[package]] [[package]]
name = "alejandra" name = "alejandra"
version = "0.3.0" version = "0.3.1"
dependencies = [ dependencies = [
"clap", "clap",
"indoc", "indoc",
@ -17,7 +17,7 @@ dependencies = [
[[package]] [[package]]
name = "alejandra-front" name = "alejandra-front"
version = "0.3.0" version = "0.3.1"
dependencies = [ dependencies = [
"alejandra", "alejandra",
"console_error_panic_hook", "console_error_panic_hook",
@ -206,9 +206,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.118" version = "0.2.119"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06e509672465a0504304aa87f9f176f2b2b716ed8fb105ebe5c02dc6dce96a94" checksum = "1bf2e165bb3457c8e098ea76f3e3bc9db55f87aa90d52d0e6be741470916aaa4"
[[package]] [[package]]
name = "log" name = "log"

View file

@ -14,4 +14,4 @@ description = "The Uncompromising Nix Code Formatter"
edition = "2021" edition = "2021"
name = "alejandra-front" name = "alejandra-front"
repository = "https://github.com/kamadorueda/alejandra" repository = "https://github.com/kamadorueda/alejandra"
version = "0.3.0" version = "0.3.1"

18
front/flake.lock generated
View file

@ -8,11 +8,11 @@
"rust-analyzer-src": "rust-analyzer-src" "rust-analyzer-src": "rust-analyzer-src"
}, },
"locked": { "locked": {
"lastModified": 1645165506, "lastModified": 1645338193,
"narHash": "sha256-PClhTeC1EhkHUQQmP9XyiR7y1d6hlEc7QY8nN1GuAzQ=", "narHash": "sha256-BTajZF5xFmO3+MZE29C6JRLSM6PXdoFrpTlaMZr0Ljc=",
"owner": "nix-community", "owner": "nix-community",
"repo": "fenix", "repo": "fenix",
"rev": "380b82e3d3381b32f11dfe024cb7d135e36d0168", "rev": "f15f0f9fedd87e265e49585463df72c1257f1ae8",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -23,11 +23,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1644972330, "lastModified": 1645013224,
"narHash": "sha256-6V2JFpTUzB9G+KcqtUR1yl7f6rd9495YrFECslEmbGw=", "narHash": "sha256-b7OEC8vwzJv3rsz9pwnTX2LQDkeOWz2DbKypkVvNHXc=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "19574af0af3ffaf7c9e359744ed32556f34536bd", "rev": "b66b39216b1fef2d8c33cc7a5c72d8da80b79970",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -46,11 +46,11 @@
"rust-analyzer-src": { "rust-analyzer-src": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1645024434, "lastModified": 1645265362,
"narHash": "sha256-ZYwqOkx9MYKmbuqkLJdRhIn7IghMRclbUzxJgR7OOhA=", "narHash": "sha256-6z88g8cyw6Ae9SxgGUmT+jMuMadrJ4IgVV+UHdK4ook=",
"owner": "rust-analyzer", "owner": "rust-analyzer",
"repo": "rust-analyzer", "repo": "rust-analyzer",
"rev": "89faff7477e904f6820990f130a3aed72c1d7e6b", "rev": "1d53f695f0408f47c5cce5cefa471eb0e86b0db7",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -2,7 +2,7 @@
releases=https://github.com/kamadorueda/alejandra/releases/download/ releases=https://github.com/kamadorueda/alejandra/releases/download/
target=alejandra-aarch64-unknown-linux-musl target=alejandra-aarch64-unknown-linux-musl
version=0.3.0 version=0.3.1
curl -o alejandra -L "${releases}/${version}/${target}" curl -o alejandra -L "${releases}/${version}/${target}"

View file

@ -2,7 +2,7 @@
releases=https://github.com/kamadorueda/alejandra/releases/download/ releases=https://github.com/kamadorueda/alejandra/releases/download/
target=alejandra-x86_64-unknown-linux-musl target=alejandra-x86_64-unknown-linux-musl
version=0.3.0 version=0.3.1
curl -o alejandra -L "${releases}/${version}/${target}" curl -o alejandra -L "${releases}/${version}/${target}"