diff --git a/CHANGELOG.md b/CHANGELOG.md index 54bc130..3166a0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.0](https://github.com/maidsafe/safeup/compare/v0.7.0...v0.8.0) - 2024-10-20 + +### Added +- `client` cmd now uses the `autonomi` binary +- add `aarch64-apple-darwin` release binaries +- add `aarch64-apple-darwin` support + +### Fixed +- *(test)* impl `download_winsw` + +### Other +- remove unused dependency +- *(workflow)* update node manager version to `0.10.1` +- *(workflow)* update node version to `0.110.0` +- *(workflow)* update client version to `0.94.0` +- *(fmt)* formatting + ## [0.7.0](https://github.com/maidsafe/safeup/compare/v0.6.0...v0.7.0) - 2024-03-21 ### Other diff --git a/Cargo.toml b/Cargo.toml index 13e4a2f..603f91c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "safeup" authors = ["MaidSafe Developers "] description = "CLI for installing components for accessing the Safe Network" license = "GPL-3.0" -version = "0.7.0" +version = "0.8.0" edition = "2021" [[bin]] diff --git a/Justfile b/Justfile index 712c018..e18385a 100644 --- a/Justfile +++ b/Justfile @@ -39,6 +39,10 @@ build-release-artifacts arch: rustup target add x86_64-unknown-linux-musl fi + if [[ "$arch" == "x86_64-apple-darwin" || "$arch" == "aarch64-apple-darwin" ]]; then + rustup target add "$arch" + fi + rm -rf artifacts mkdir artifacts cargo clean