Skip to content

Commit b753020

Browse files
committed
feat: release 1.1.0
1 parent 565a653 commit b753020

File tree

13 files changed

+53
-38
lines changed

13 files changed

+53
-38
lines changed

CHANGELOG.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,19 @@ Types of changes
1717
- Security in case of vulnerabilities.
1818
-->
1919

20+
## [1.1.0] - 2022-03-10
21+
22+
### Added
23+
24+
- Emacs integration instructions.
25+
- A `--quiet` flag to the CLI which hide output details,
26+
disable the TUI
27+
and only print error messages.
28+
29+
### Changed
30+
31+
- Updated dependencies to its latest version.
32+
2033
## [1.0.0] - 2022-03-03
2134

2235
### Added
@@ -510,7 +523,8 @@ Types of changes
510523

511524
---
512525

513-
[unreleased]: https://github.com/kamadorueda/alejandra/compare/1.0.0...HEAD
526+
[unreleased]: https://github.com/kamadorueda/alejandra/compare/1.1.0...HEAD
527+
[1.1.0]: https://github.com/kamadorueda/alejandra/compare/1.0.0...1.1.0
514528
[1.0.0]: https://github.com/kamadorueda/alejandra/compare/0.7.0...1.0.0
515529
[0.7.0]: https://github.com/kamadorueda/alejandra/compare/0.6.0...0.7.0
516530
[0.6.0]: https://github.com/kamadorueda/alejandra/compare/0.5.0...0.6.0

Cargo.lock

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

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ Please visit:
108108

109109
You can download a binary for your platform:
110110

111-
- [aarch64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/1.0.0/alejandra-aarch64-unknown-linux-musl)
112-
- [armv6l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/1.0.0/alejandra-armv6l-unknown-linux-musleabihf)
113-
- [armv7l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/1.0.0/alejandra-armv7l-unknown-linux-musleabihf)
114-
- [i686-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/1.0.0/alejandra-i686-unknown-linux-musl)
115-
- [x86_64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/1.0.0/alejandra-x86_64-unknown-linux-musl)
111+
- [aarch64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/1.1.0/alejandra-aarch64-unknown-linux-musl)
112+
- [armv6l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/1.1.0/alejandra-armv6l-unknown-linux-musleabihf)
113+
- [armv7l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/1.1.0/alejandra-armv7l-unknown-linux-musleabihf)
114+
- [i686-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/1.1.0/alejandra-i686-unknown-linux-musl)
115+
- [x86_64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/1.1.0/alejandra-x86_64-unknown-linux-musl)
116116

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

138138
```bash
139-
$ nix profile install github:kamadorueda/alejandra/1.0.0
139+
$ nix profile install github:kamadorueda/alejandra/1.1.0
140140
```
141141

142142
- Nix stable:
143143

144144
Pick one depending on your platform:
145145

146146
```bash
147-
$ nix-env -ivA aarch64-darwin -f https://github.com/kamadorueda/alejandra/tarball/1.0.0
148-
$ nix-env -ivA aarch64-linux -f https://github.com/kamadorueda/alejandra/tarball/1.0.0
149-
$ nix-env -ivA x86_64-darwin -f https://github.com/kamadorueda/alejandra/tarball/1.0.0
150-
$ nix-env -ivA x86_64-linux -f https://github.com/kamadorueda/alejandra/tarball/1.0.0
147+
$ nix-env -ivA aarch64-darwin -f https://github.com/kamadorueda/alejandra/tarball/1.1.0
148+
$ nix-env -ivA aarch64-linux -f https://github.com/kamadorueda/alejandra/tarball/1.1.0
149+
$ nix-env -ivA x86_64-darwin -f https://github.com/kamadorueda/alejandra/tarball/1.1.0
150+
$ nix-env -ivA x86_64-linux -f https://github.com/kamadorueda/alejandra/tarball/1.1.0
151151
```
152152

153153
Then run Alejandra with:
@@ -165,7 +165,7 @@ $ alejandra --help
165165
inputs = {
166166
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
167167
168-
alejandra.url = "github:kamadorueda/alejandra/1.0.0";
168+
alejandra.url = "github:kamadorueda/alejandra/1.1.0";
169169
alejandra.inputs.nixpkgs.follows = "nixpkgs";
170170
};
171171
@@ -195,7 +195,7 @@ $ alejandra --help
195195
let
196196
alejandra =
197197
(import (builtins.fetchTarball {
198-
url = "https://github.com/kamadorueda/alejandra/tarball/1.0.0";
198+
url = "https://github.com/kamadorueda/alejandra/tarball/1.1.0";
199199
sha256 = "0000000000000000000000000000000000000000000000000000";
200200
}))
201201
# Pick one from: aarch64-linux, aarch64-linux, x86_64-darwin, x86_64-linux

flake.lock

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

flake.nix

+1-1
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 = "1.0.0+${builtins.substring 0 8 date}.${commit}";
14+
version = "1.1.0+${builtins.substring 0 8 date}.${commit}";
1515

1616
nixpkgsForHost = host:
1717
import inputs.nixpkgs {

front/Cargo.lock

+2-2
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
@@ -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 = "1.0.0"
16+
version = "1.1.0"
1717

1818
[profile.release]
1919
lto = true

front/flake.lock

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

integrations/vscode/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,5 @@
6565
"type": "git",
6666
"url": "https://github.com/kamadorueda/alejandra"
6767
},
68-
"version": "1.0.0"
68+
"version": "1.1.0"
6969
}

src/alejandra_cli/Cargo.toml

+1-1
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 = "1.0.0"
21+
version = "1.1.0"

src/alejandra_cli/src/cli.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,13 @@ pub(crate) fn parse(args: Vec<String>) -> clap::ArgMatches {
6565
Kevin Amado ~ @kamadorueda on GitHub, matrix.org and Gmail.
6666
Thomas Bereknyei ~ @tomberek on GitHub and matrix.org.
6767
Piegames ~ @piegamesde on GitHub.
68-
Joachim Ernst ~ @0x4A6F on GitHub.
68+
Joachim Ernst ~ @0x4A6F on GitHub.
6969
David Arnold ~ @blaggacao on GitHub and matrix.org.
7070
David Hauer ~ @DavHau on GitHub.
7171
Fabian Möller ~ @B4dM4n on GitHub.
7272
Rok Garbas ~ @garbas on GitHub.
7373
Yorick van Pelt ~ @yorickvP on GitHub.
74+
Jörg Thalheim ~ @Mic92 on GitHub.
7475
Vincent Ambo ~ @tazjin on GitHub.
7576
Mr Hedgehog ~ @ModdedGamers on GitHub.
7677
Tristan Maat ~ @TLATER on GitHub.

src/alejandra_engine/Cargo.toml

+1-1
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 = "1.0.0"
35+
version = "1.1.0"

src/alejandra_engine/src/version.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pub const VERSION: &str = "1.0.0";
1+
pub const VERSION: &str = "1.1.0";

0 commit comments

Comments
 (0)