File tree Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
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
+
9
26
## [ 0.7.0] ( https://github.com/maidsafe/safeup/compare/v0.6.0...v0.7.0 ) - 2024-03-21
10
27
11
28
### Other
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "safeup"
3
3
authors = [
" MaidSafe Developers <[email protected] >" ]
4
4
description = " CLI for installing components for accessing the Safe Network"
5
5
license = " GPL-3.0"
6
- version = " 0.7 .0"
6
+ version = " 0.8 .0"
7
7
edition = " 2021"
8
8
9
9
[[bin ]]
Original file line number Diff line number Diff line change @@ -39,6 +39,10 @@ build-release-artifacts arch:
39
39
rustup target add x86 _64 -unknown-linux-musl
40
40
fi
41
41
42
+ if [[ " $arch" == " x86_64-apple-darwin" || " $arch" == " aarch64-apple-darwin" ]]; then
43
+ rustup target add " $arch"
44
+ fi
45
+
42
46
rm -rf artifacts
43
47
mkdir artifacts
44
48
cargo clean
You can’t perform that action at this time.
0 commit comments