Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: release 1.1.0
Browse files Browse the repository at this point in the history
kamadorueda committed Mar 10, 2022
1 parent 565a653 commit b753020
Showing 13 changed files with 53 additions and 38 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -17,6 +17,19 @@ Types of changes
- Security in case of vulnerabilities.
-->

## [1.1.0] - 2022-03-10

### Added

- Emacs integration instructions.
- A `--quiet` flag to the CLI which hide output details,
disable the TUI
and only print error messages.

### Changed

- Updated dependencies to its latest version.

## [1.0.0] - 2022-03-03

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

---

[unreleased]: https://github.com/kamadorueda/alejandra/compare/1.0.0...HEAD
[unreleased]: https://github.com/kamadorueda/alejandra/compare/1.1.0...HEAD
[1.1.0]: https://github.com/kamadorueda/alejandra/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/kamadorueda/alejandra/compare/0.7.0...1.0.0
[0.7.0]: https://github.com/kamadorueda/alejandra/compare/0.6.0...0.7.0
[0.6.0]: https://github.com/kamadorueda/alejandra/compare/0.5.0...0.6.0
8 changes: 4 additions & 4 deletions Cargo.lock

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

24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -108,11 +108,11 @@ Please visit:

You can download a binary for your platform:

- [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/1.0.0/alejandra-armv6l-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/1.0.0/alejandra-i686-unknown-linux-musl)
- [x86_64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/1.0.0/alejandra-x86_64-unknown-linux-musl)
- [aarch64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/1.1.0/alejandra-aarch64-unknown-linux-musl)
- [armv6l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/1.1.0/alejandra-armv6l-unknown-linux-musleabihf)
- [armv7l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/1.1.0/alejandra-armv7l-unknown-linux-musleabihf)
- [i686-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/1.1.0/alejandra-i686-unknown-linux-musl)
- [x86_64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/1.1.0/alejandra-x86_64-unknown-linux-musl)

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

```bash
$ nix profile install github:kamadorueda/alejandra/1.0.0
$ nix profile install github:kamadorueda/alejandra/1.1.0
```

- Nix stable:

Pick one depending on your platform:

```bash
$ 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/1.0.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/1.0.0
$ nix-env -ivA aarch64-darwin -f https://github.com/kamadorueda/alejandra/tarball/1.1.0
$ nix-env -ivA aarch64-linux -f https://github.com/kamadorueda/alejandra/tarball/1.1.0
$ nix-env -ivA x86_64-darwin -f https://github.com/kamadorueda/alejandra/tarball/1.1.0
$ nix-env -ivA x86_64-linux -f https://github.com/kamadorueda/alejandra/tarball/1.1.0
```

Then run Alejandra with:
@@ -165,7 +165,7 @@ $ alejandra --help
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
alejandra.url = "github:kamadorueda/alejandra/1.0.0";
alejandra.url = "github:kamadorueda/alejandra/1.1.0";
alejandra.inputs.nixpkgs.follows = "nixpkgs";
};
@@ -195,7 +195,7 @@ $ alejandra --help
let
alejandra =
(import (builtins.fetchTarball {
url = "https://github.com/kamadorueda/alejandra/tarball/1.0.0";
url = "https://github.com/kamadorueda/alejandra/tarball/1.1.0";
sha256 = "0000000000000000000000000000000000000000000000000000";
}))
# Pick one from: aarch64-linux, aarch64-linux, x86_64-darwin, x86_64-linux
6 changes: 3 additions & 3 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
outputs = inputs: let
commit = inputs.self.shortRev or "dirty";
date = inputs.self.lastModifiedDate or inputs.self.lastModified or "19700101";
version = "1.0.0+${builtins.substring 0 8 date}.${commit}";
version = "1.1.0+${builtins.substring 0 8 date}.${commit}";

nixpkgsForHost = host:
import inputs.nixpkgs {
4 changes: 2 additions & 2 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
@@ -13,7 +13,7 @@ description = "The Uncompromising Nix Code Formatter"
edition = "2021"
name = "alejandra_front"
repository = "https://github.com/kamadorueda/alejandra"
version = "1.0.0"
version = "1.1.0"

[profile.release]
lto = true
18 changes: 9 additions & 9 deletions front/flake.lock

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

2 changes: 1 addition & 1 deletion integrations/vscode/package.json
Original file line number Diff line number Diff line change
@@ -65,5 +65,5 @@
"type": "git",
"url": "https://github.com/kamadorueda/alejandra"
},
"version": "1.0.0"
"version": "1.1.0"
}
2 changes: 1 addition & 1 deletion src/alejandra_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -18,4 +18,4 @@ description = "The Uncompromising Nix Code Formatter"
edition = "2021"
name = "alejandra_cli"
repository = "https://github.com/kamadorueda/alejandra"
version = "1.0.0"
version = "1.1.0"
3 changes: 2 additions & 1 deletion src/alejandra_cli/src/cli.rs
Original file line number Diff line number Diff line change
@@ -65,12 +65,13 @@ pub(crate) fn parse(args: Vec<String>) -> clap::ArgMatches {
Kevin Amado ~ @kamadorueda on GitHub, matrix.org and Gmail.
Thomas Bereknyei ~ @tomberek on GitHub and matrix.org.
Piegames ~ @piegamesde on GitHub.
Joachim Ernst ~ @0x4A6F on GitHub.
Joachim Ernst ~ @0x4A6F on GitHub.
David Arnold ~ @blaggacao on GitHub and matrix.org.
David Hauer ~ @DavHau on GitHub.
Fabian Möller ~ @B4dM4n on GitHub.
Rok Garbas ~ @garbas on GitHub.
Yorick van Pelt ~ @yorickvP on GitHub.
Jörg Thalheim ~ @Mic92 on GitHub.
Vincent Ambo ~ @tazjin on GitHub.
Mr Hedgehog ~ @ModdedGamers on GitHub.
Tristan Maat ~ @TLATER on GitHub.
2 changes: 1 addition & 1 deletion src/alejandra_engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -32,4 +32,4 @@ description = "The Uncompromising Nix Code Formatter"
edition = "2021"
name = "alejandra_engine"
repository = "https://github.com/kamadorueda/alejandra"
version = "1.0.0"
version = "1.1.0"
2 changes: 1 addition & 1 deletion src/alejandra_engine/src/version.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pub const VERSION: &str = "1.0.0";
pub const VERSION: &str = "1.1.0";

0 comments on commit b753020

Please sign in to comment.