mirror of
https://github.com/RGBCube/alejandra
synced 2025-07-31 04:27:45 +00:00
feat: release 1.0.0
This commit is contained in:
parent
439631f07f
commit
511c3f6a88
9 changed files with 24 additions and 24 deletions
|
@ -42,7 +42,7 @@ Types of changes
|
||||||
|
|
||||||
- String interpolations (`"${something}"`)
|
- String interpolations (`"${something}"`)
|
||||||
now follow the same logic as parentheses (`(something)`),
|
now follow the same logic as parentheses (`(something)`),
|
||||||
since ultimately, the are the same family of elements
|
since ultimately, they are the same family of elements.
|
||||||
|
|
||||||
- Parentheses handling logic was rewritten
|
- Parentheses handling logic was rewritten
|
||||||
and by extension string interpolations as well.
|
and by extension string interpolations as well.
|
||||||
|
@ -137,7 +137,7 @@ Types of changes
|
||||||
|
|
||||||
- A few internal position counters, nothing visible from the outside.
|
- A few internal position counters, nothing visible from the outside.
|
||||||
- The new features cost a little of runtime speed,
|
- The new features cost a little of runtime speed,
|
||||||
but anyway we are still pretty fast ⚡
|
but anyway we are still pretty fast. ⚡
|
||||||
|
|
||||||
## [0.7.0] - 2022-02-28
|
## [0.7.0] - 2022-02-28
|
||||||
|
|
||||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -4,7 +4,7 @@ version = 3
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "alejandra_cli"
|
name = "alejandra_cli"
|
||||||
version = "0.7.0"
|
version = "1.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"alejandra_engine",
|
"alejandra_engine",
|
||||||
"atty",
|
"atty",
|
||||||
|
@ -18,7 +18,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "alejandra_engine"
|
name = "alejandra_engine"
|
||||||
version = "0.7.0"
|
version = "1.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"mimalloc",
|
"mimalloc",
|
||||||
"rnix",
|
"rnix",
|
||||||
|
|
26
README.md
26
README.md
|
@ -107,11 +107,11 @@ Please visit:
|
||||||
|
|
||||||
You can download a binary for your platform:
|
You can download a binary for your platform:
|
||||||
|
|
||||||
- [aarch64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.7.0/alejandra-aarch64-unknown-linux-musl)
|
- [aarch64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/1.0.0/alejandra-aarch64-unknown-linux-musl)
|
||||||
- [armv6l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/0.7.0/alejandra-armv6l-unknown-linux-musleabihf)
|
- [armv6l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/1.0.0/alejandra-armv6l-unknown-linux-musleabihf)
|
||||||
- [armv7l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/0.7.0/alejandra-armv7l-unknown-linux-musleabihf)
|
- [armv7l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/1.0.0/alejandra-armv7l-unknown-linux-musleabihf)
|
||||||
- [i686-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.7.0/alejandra-i686-unknown-linux-musl)
|
- [i686-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/1.0.0/alejandra-i686-unknown-linux-musl)
|
||||||
- [x86_64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.7.0/alejandra-x86_64-unknown-linux-musl)
|
- [x86_64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/1.0.0/alejandra-x86_64-unknown-linux-musl)
|
||||||
|
|
||||||
Make it executable (`$ chmod +x`)
|
Make it executable (`$ chmod +x`)
|
||||||
and run Alejandra with:
|
and run Alejandra with:
|
||||||
|
@ -135,7 +135,7 @@ Please visit: [search.nixos.org/packages?query=alejandra](https://search.nixos.o
|
||||||
- Nix with [Flakes](https://nixos.wiki/wiki/Flakes):
|
- Nix with [Flakes](https://nixos.wiki/wiki/Flakes):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ nix profile install github:kamadorueda/alejandra/0.7.0
|
$ nix profile install github:kamadorueda/alejandra/1.0.0
|
||||||
```
|
```
|
||||||
|
|
||||||
- Nix stable:
|
- Nix stable:
|
||||||
|
@ -143,10 +143,10 @@ Please visit: [search.nixos.org/packages?query=alejandra](https://search.nixos.o
|
||||||
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.7.0
|
$ nix-env -ivA aarch64-darwin -f https://github.com/kamadorueda/alejandra/tarball/1.0.0
|
||||||
$ nix-env -ivA aarch64-linux -f https://github.com/kamadorueda/alejandra/tarball/0.7.0
|
$ nix-env -ivA aarch64-linux -f https://github.com/kamadorueda/alejandra/tarball/1.0.0
|
||||||
$ nix-env -ivA x86_64-darwin -f https://github.com/kamadorueda/alejandra/tarball/0.7.0
|
$ nix-env -ivA x86_64-darwin -f https://github.com/kamadorueda/alejandra/tarball/1.0.0
|
||||||
$ nix-env -ivA x86_64-linux -f https://github.com/kamadorueda/alejandra/tarball/0.7.0
|
$ nix-env -ivA x86_64-linux -f https://github.com/kamadorueda/alejandra/tarball/1.0.0
|
||||||
```
|
```
|
||||||
|
|
||||||
Then run Alejandra with:
|
Then run Alejandra with:
|
||||||
|
@ -164,7 +164,7 @@ $ alejandra --help
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
||||||
|
|
||||||
alejandra.url = "github:kamadorueda/alejandra/0.7.0";
|
alejandra.url = "github:kamadorueda/alejandra/1.0.0";
|
||||||
alejandra.inputs.nixpkgs.follows = "nixpkgs";
|
alejandra.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -194,8 +194,8 @@ $ alejandra --help
|
||||||
let
|
let
|
||||||
alejandra =
|
alejandra =
|
||||||
(import (builtins.fetchTarball {
|
(import (builtins.fetchTarball {
|
||||||
url = "https://github.com/kamadorueda/alejandra/tarball/0.7.0";
|
url = "https://github.com/kamadorueda/alejandra/tarball/1.0.0";
|
||||||
sha256 = "0kqkwi4j1d0n334jl3q6x70ga8jqmqpv514zsbfca2a86c7qs6cf";
|
sha256 = "0000000000000000000000000000000000000000000000000000";
|
||||||
}))
|
}))
|
||||||
# Pick one from: aarch64-linux, aarch64-linux, x86_64-darwin, x86_64-linux
|
# Pick one from: aarch64-linux, aarch64-linux, x86_64-darwin, x86_64-linux
|
||||||
.x86_64-linux
|
.x86_64-linux
|
||||||
|
|
|
@ -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.7.0+${builtins.substring 0 8 date}.${commit}";
|
version = "1.0.0+${builtins.substring 0 8 date}.${commit}";
|
||||||
|
|
||||||
nixpkgsForHost = host:
|
nixpkgsForHost = host:
|
||||||
import inputs.nixpkgs {
|
import inputs.nixpkgs {
|
||||||
|
|
4
front/Cargo.lock
generated
4
front/Cargo.lock
generated
|
@ -4,7 +4,7 @@ version = 3
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "alejandra_engine"
|
name = "alejandra_engine"
|
||||||
version = "0.7.0"
|
version = "1.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"mimalloc",
|
"mimalloc",
|
||||||
"rnix",
|
"rnix",
|
||||||
|
@ -13,7 +13,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "alejandra_front"
|
name = "alejandra_front"
|
||||||
version = "0.7.0"
|
version = "1.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"alejandra_engine",
|
"alejandra_engine",
|
||||||
"console_error_panic_hook",
|
"console_error_panic_hook",
|
||||||
|
|
|
@ -13,7 +13,7 @@ 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.7.0"
|
version = "1.0.0"
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
lto = true
|
lto = true
|
||||||
|
|
|
@ -18,4 +18,4 @@ description = "The Uncompromising Nix Code Formatter"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
name = "alejandra_cli"
|
name = "alejandra_cli"
|
||||||
repository = "https://github.com/kamadorueda/alejandra"
|
repository = "https://github.com/kamadorueda/alejandra"
|
||||||
version = "0.7.0"
|
version = "1.0.0"
|
||||||
|
|
|
@ -32,4 +32,4 @@ description = "The Uncompromising Nix Code Formatter"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
name = "alejandra_engine"
|
name = "alejandra_engine"
|
||||||
repository = "https://github.com/kamadorueda/alejandra"
|
repository = "https://github.com/kamadorueda/alejandra"
|
||||||
version = "0.7.0"
|
version = "1.0.0"
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
pub const VERSION: &str = "0.7.0";
|
pub const VERSION: &str = "1.0.0";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue