Skip to content

Commit

Permalink
chore(release): 0.8.0
Browse files Browse the repository at this point in the history
This commit also contains a hack to try and get the release build to run correctly on macOS.
  • Loading branch information
actions-user authored and jacderida committed Oct 20, 2024
1 parent b3e8a86 commit 5c3de9a
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "safeup"
authors = ["MaidSafe Developers <dev@maidsafe.net>"]
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]]
Expand Down
4 changes: 4 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5c3de9a

Please sign in to comment.