Skip to content

Commit a618751

Browse files
committed
feat: release 0.7.0
1 parent 44affb2 commit a618751

File tree

11 files changed

+39
-36
lines changed

11 files changed

+39
-36
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Types of changes
1717
- Security in case of vulnerabilities.
1818
-->
1919

20+
## [0.7.0] - 2022-02-28
21+
2022
### Added
2123

2224
- Inline comments support in binary operators:
@@ -386,7 +388,8 @@ Types of changes
386388

387389
---
388390

389-
[unreleased]: https://github.com/kamadorueda/alejandra/compare/0.6.0...HEAD
391+
[unreleased]: https://github.com/kamadorueda/alejandra/compare/0.7.0...HEAD
392+
[0.7.0]: https://github.com/kamadorueda/alejandra/compare/0.6.0...0.7.0
390393
[0.6.0]: https://github.com/kamadorueda/alejandra/compare/0.5.0...0.6.0
391394
[0.5.0]: https://github.com/kamadorueda/alejandra/compare/0.4.0...0.5.0
392395
[0.4.0]: https://github.com/kamadorueda/alejandra/compare/0.3.1...0.4.0

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ Please visit:
107107

108108
You can download a binary for your platform:
109109

110-
- [aarch64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.6.0/alejandra-aarch64-unknown-linux-musl)
111-
- [armv6l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/0.6.0/alejandra-armv6l-unknown-linux-musleabihf)
112-
- [armv7l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/0.6.0/alejandra-armv7l-unknown-linux-musleabihf)
113-
- [i686-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.6.0/alejandra-i686-unknown-linux-musl)
114-
- [x86_64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.6.0/alejandra-x86_64-unknown-linux-musl)
110+
- [aarch64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.7.0/alejandra-aarch64-unknown-linux-musl)
111+
- [armv6l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/0.7.0/alejandra-armv6l-unknown-linux-musleabihf)
112+
- [armv7l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/0.7.0/alejandra-armv7l-unknown-linux-musleabihf)
113+
- [i686-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.7.0/alejandra-i686-unknown-linux-musl)
114+
- [x86_64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/0.7.0/alejandra-x86_64-unknown-linux-musl)
115115

116116
Make it executable (`$ chmod +x`)
117117
and run Alejandra with:
@@ -135,18 +135,18 @@ Please visit: [search.nixos.org/packages?query=alejandra](https://search.nixos.o
135135
- Nix with [Flakes](https://nixos.wiki/wiki/Flakes):
136136

137137
```bash
138-
$ nix profile install github:kamadorueda/alejandra/0.6.0
138+
$ nix profile install github:kamadorueda/alejandra/0.7.0
139139
```
140140

141141
- Nix stable:
142142

143143
Pick one depending on your platform:
144144

145145
```bash
146-
$ nix-env -ivA aarch64-darwin -f https://github.com/kamadorueda/alejandra/tarball/0.6.0
147-
$ nix-env -ivA aarch64-linux -f https://github.com/kamadorueda/alejandra/tarball/0.6.0
148-
$ nix-env -ivA x86_64-darwin -f https://github.com/kamadorueda/alejandra/tarball/0.6.0
149-
$ nix-env -ivA x86_64-linux -f https://github.com/kamadorueda/alejandra/tarball/0.6.0
146+
$ nix-env -ivA aarch64-darwin -f https://github.com/kamadorueda/alejandra/tarball/0.7.0
147+
$ nix-env -ivA aarch64-linux -f https://github.com/kamadorueda/alejandra/tarball/0.7.0
148+
$ nix-env -ivA x86_64-darwin -f https://github.com/kamadorueda/alejandra/tarball/0.7.0
149+
$ nix-env -ivA x86_64-linux -f https://github.com/kamadorueda/alejandra/tarball/0.7.0
150150
```
151151

152152
Then run Alejandra with:

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 1 deletion
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.6.0+${builtins.substring 0 8 date}.${commit}";
14+
version = "0.7.0+${builtins.substring 0 8 date}.${commit}";
1515

1616
nixpkgsForHost = host:
1717
import inputs.nixpkgs {

front/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description = "The Uncompromising Nix Code Formatter"
1313
edition = "2021"
1414
name = "alejandra_front"
1515
repository = "https://github.com/kamadorueda/alejandra"
16-
version = "0.6.0"
16+
version = "0.7.0"
1717

1818
[profile.release]
1919
lto = true

front/flake.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/alejandra_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ description = "The Uncompromising Nix Code Formatter"
1818
edition = "2021"
1919
name = "alejandra_cli"
2020
repository = "https://github.com/kamadorueda/alejandra"
21-
version = "0.6.0"
21+
version = "0.7.0"

src/alejandra_engine/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ description = "The Uncompromising Nix Code Formatter"
3232
edition = "2021"
3333
name = "alejandra_engine"
3434
repository = "https://github.com/kamadorueda/alejandra"
35-
version = "0.6.0"
35+
version = "0.7.0"

0 commit comments

Comments
 (0)