From 7f7fc9c0388e74f9351db6819acd11a02aaead21 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Tue, 21 May 2024 17:40:17 -0400 Subject: [PATCH] Release v0.3.0 --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc89f97..7b4f2f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## Unreleased Changes +## [0.3.0] (May 11, 2024) +* Switched from OpenSSL to rustls, which should fix some dynamic dependency issues on certain distributions. ([#62]) +* Added support for Linux AArch64 builds ([#64]) + +[#62]: https://github.com/LPGhatguy/aftman/pull/62 +[#64]: https://github.com/LPGhatguy/aftman/pull/64 +[0.3.0]: https://github.com/LPGhatguy/aftman/releases/tag/v0.3.0 + ## [0.2.8] (May 2, 2024) * Improved trust check logic and added `--skip-untrusted` flag ([#38]) * Fixed macOS AArch64 builds actually being x86-64 ([#34]) diff --git a/Cargo.lock b/Cargo.lock index 01a0bbd..4aca25e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "aftman" -version = "0.2.8" +version = "0.3.0" dependencies = [ "anyhow", "atty", diff --git a/Cargo.toml b/Cargo.toml index c4dcced..63c034b 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.8" +version = "0.3.0" rust-version = "1.58.0" license = "MIT" edition = "2021"