From a206ac2bfc299ec39c8970783f6bf306ddaa2462 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Thu, 11 Aug 2022 21:28:19 -0400 Subject: [PATCH] Release Aftman 0.2.6 --- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 10 +++++++++- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a59ca34..1517d8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ ## Unreleased Changes +## [0.2.6] (August 11, 2022) +* Added `aftman list` subcommand. ([#27]) +* Added support for installing macOS artifacts with the "darwin" keyword. ([#21]) +* Fixed tool exit codes not being propagated. ([#25]) +* Fixed `self-install` not creating a `.zshenv` file on macOS. ([#28]) + +[#21]: https://github.com/LPGhatguy/aftman/pull/21 +[#25]: https://github.com/LPGhatguy/aftman/pull/25 +[#27]: https://github.com/LPGhatguy/aftman/pull/27 +[#28]: https://github.com/LPGhatguy/aftman/pull/28 +[0.2.6]: https://github.com/LPGhatguy/aftman/releases/tag/v0.2.6 + ## [0.2.5] (July 2, 2022) * Improved `self-install` behavior. ([#20]) diff --git a/Cargo.lock b/Cargo.lock index 70348d4..67e46ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "aftman" -version = "0.2.5" +version = "0.2.6" dependencies = [ "anyhow", "atty", diff --git a/Cargo.toml b/Cargo.toml index 090806d..6c66baf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "aftman" description = "Aftman is a command line toolchain manager" -version = "0.2.5" +version = "0.2.6" rust-version = "1.58.0" license = "MIT" edition = "2021" diff --git a/README.md b/README.md index 414d766..b3fe3d2 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,15 @@ Adds a tool to the list of trusted tools. Aftman prompts the user before installing new tools. Running `aftman trust` beforehand skips this prompt. This is useful when running automation that depends on a tool from a known location. ### `aftman list` -**This subcommand is not yet implemented.** +*Added in Aftman 0.2.6.* + +Usage: + +```bash +aftman list +``` + +Lists all tools currently managed by Aftman. ### `aftman update` **This subcommand is not yet implemented.**