Skip to content

Commit 5c3de9a

Browse files
actions-userjacderida
authored andcommitted
chore(release): 0.8.0
This commit also contains a hack to try and get the release build to run correctly on macOS.
1 parent b3e8a86 commit 5c3de9a

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.8.0](https://github.com/maidsafe/safeup/compare/v0.7.0...v0.8.0) - 2024-10-20
10+
11+
### Added
12+
- `client` cmd now uses the `autonomi` binary
13+
- add `aarch64-apple-darwin` release binaries
14+
- add `aarch64-apple-darwin` support
15+
16+
### Fixed
17+
- *(test)* impl `download_winsw`
18+
19+
### Other
20+
- remove unused dependency
21+
- *(workflow)* update node manager version to `0.10.1`
22+
- *(workflow)* update node version to `0.110.0`
23+
- *(workflow)* update client version to `0.94.0`
24+
- *(fmt)* formatting
25+
926
## [0.7.0](https://github.com/maidsafe/safeup/compare/v0.6.0...v0.7.0) - 2024-03-21
1027

1128
### Other

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "safeup"
33
authors = ["MaidSafe Developers <[email protected]>"]
44
description = "CLI for installing components for accessing the Safe Network"
55
license = "GPL-3.0"
6-
version = "0.7.0"
6+
version = "0.8.0"
77
edition = "2021"
88

99
[[bin]]

Justfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ build-release-artifacts arch:
3939
rustup target add x86_64-unknown-linux-musl
4040
fi
4141

42+
if [[ "$arch" == "x86_64-apple-darwin" || "$arch" == "aarch64-apple-darwin" ]]; then
43+
rustup target add "$arch"
44+
fi
45+
4246
rm -rf artifacts
4347
mkdir artifacts
4448
cargo clean

0 commit comments

Comments
 (0)