From c5dc957d3836073205387ec12eaa439c98284f22 Mon Sep 17 00:00:00 2001 From: Kevin Amado Date: Tue, 5 Apr 2022 15:19:28 -0500 Subject: [PATCH] docs: update changelog --- CHANGELOG.md | 20 ++++++++++++++++++++ src/alejandra_cli/src/cli.rs | 5 ++++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db0d65e..10abbc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,26 @@ Types of changes - Security in case of vulnerabilities. --> +## [1.2.0] - 2022-04-05 + +### Added + +- A new i686-linux system to the flake. +- `apps.${system}.default` to the Flake + so that newer versions of Nix + understand this instead of `defaultApp.${system}`. + +### Fixed + +- A typo in the documentation where `aarch64-linux` appeared twice + and `aarch64-darwin` didn't. + +### Security + +- New CVEs were discovered in the third party dependencies of our website: + https://kamadorueda.github.io/alejandra/ + and so we updated those front-end dependencies to their latest version. + ## [1.1.0] - 2022-03-10 ### Added diff --git a/src/alejandra_cli/src/cli.rs b/src/alejandra_cli/src/cli.rs index a3270f4..55d1433 100644 --- a/src/alejandra_cli/src/cli.rs +++ b/src/alejandra_cli/src/cli.rs @@ -23,7 +23,10 @@ pub(crate) fn parse(args: Vec) -> clap::ArgMatches { ) .arg( clap::Arg::new("check") - .help("Check if the input is already formatted.") + .help( + "Check if the input is already formatted and disable \ + writing in-place the modified content.", + ) .long("--check") .short('c'), )