From 94b5f647e53ddc80ff76a77627a8847eaf10e0f2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 31 Aug 2023 19:39:41 +0000 Subject: [PATCH] chore(release): sn_cli-v0.81.8/sn_client-v0.88.5/sn_transfers-v0.11.3/sn_node-v0.89.8/sn_testnet-v0.2.100/sn_networking-v0.5.5 --- Cargo.lock | 12 ++++++------ sn_cli/CHANGELOG.md | 8 ++++++++ sn_cli/Cargo.toml | 6 +++--- sn_client/CHANGELOG.md | 5 +++++ sn_client/Cargo.toml | 6 +++--- sn_networking/CHANGELOG.md | 5 +++++ sn_networking/Cargo.toml | 4 ++-- sn_node/CHANGELOG.md | 5 +++++ sn_node/Cargo.toml | 8 ++++---- sn_testnet/CHANGELOG.md | 5 +++++ sn_testnet/Cargo.toml | 2 +- sn_transfers/CHANGELOG.md | 5 +++++ sn_transfers/Cargo.toml | 2 +- 13 files changed, 53 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dc34954c80..2133054f6e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3902,7 +3902,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.81.7" +version = "0.81.8" dependencies = [ "bincode", "blsttc", @@ -3933,7 +3933,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.88.4" +version = "0.88.5" dependencies = [ "async-trait", "bincode", @@ -3997,7 +3997,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.5.4" +version = "0.5.5" dependencies = [ "async-trait", "blsttc", @@ -4023,7 +4023,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.89.7" +version = "0.89.8" dependencies = [ "assert_fs", "async-trait", @@ -4124,7 +4124,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.2.99" +version = "0.2.100" dependencies = [ "assert_fs", "clap 3.2.25", @@ -4147,7 +4147,7 @@ dependencies = [ [[package]] name = "sn_transfers" -version = "0.11.2" +version = "0.11.3" dependencies = [ "assert_fs", "async-trait", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index e8894a5f56..9e7b6d54b1 100644 --- a/sn_cli/CHANGELOG.md +++ b/sn_cli/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.81.8](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.81.7...sn_cli-v0.81.8) - 2023-08-31 + +### Added +- *(cli)* perform wallet actions without connecting to the network + +### Other +- remove unused async + ## [0.81.7](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.81.6...sn_cli-v0.81.7) - 2023-08-31 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index f4b9b22890..209ad57b6e 100644 --- a/sn_cli/Cargo.toml +++ b/sn_cli/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_cli" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.81.7" +version = "0.81.8" [[bin]] path="src/main.rs" @@ -35,9 +35,9 @@ hex = "~0.4.3" libp2p = { version="0.52", features = ["identify", "kad"] } reqwest = { version="0.11.18", default-features=false, features = ["rustls"] } sn_build_info = { path="../sn_build_info", version = "0.1.2" } -sn_client = { path = "../sn_client", version = "0.88.4" } +sn_client = { path = "../sn_client", version = "0.88.5" } sn_dbc = { version = "19.1.1", features = ["serdes"] } -sn_transfers = { path = "../sn_transfers", version = "0.11.2" } +sn_transfers = { path = "../sn_transfers", version = "0.11.3" } sn_logging = { path = "../sn_logging", version = "0.2.5" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.6" } sn_protocol = { path = "../sn_protocol", version = "0.6.2" } diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 023f8ac3e1..37bb69a29c 100644 --- a/sn_client/CHANGELOG.md +++ b/sn_client/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.88.5](https://github.com/maidsafe/safe_network/compare/sn_client-v0.88.4...sn_client-v0.88.5) - 2023-08-31 + +### Other +- remove unused async + ## [0.88.4](https://github.com/maidsafe/safe_network/compare/sn_client-v0.88.3...sn_client-v0.88.4) - 2023-08-31 ### Other diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index 717455343d..dcb1b3f3d3 100644 --- a/sn_client/Cargo.toml +++ b/sn_client/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_client" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.88.4" +version = "0.88.5" [features] default=[] @@ -28,10 +28,10 @@ rayon = "~1.5.1" self_encryption = "~0.28.0" serde = { version = "1.0.133", features = [ "derive", "rc" ]} sn_dbc = { version = "19.1.1", features = ["serdes"] } -sn_networking = { path = "../sn_networking", version = "0.5.4" } +sn_networking = { path = "../sn_networking", version = "0.5.5" } sn_protocol = { path = "../sn_protocol", version = "0.6.2" } sn_registers = { path = "../sn_registers", version = "0.2.3" } -sn_transfers = { path = "../sn_transfers", version = "0.11.2" } +sn_transfers = { path = "../sn_transfers", version = "0.11.3" } thiserror = "1.0.23" tiny-keccak = "~2.0.2" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index f51f9d8c9a..627c7ef7bd 100644 --- a/sn_networking/CHANGELOG.md +++ b/sn_networking/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.5](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.5.4...sn_networking-v0.5.5) - 2023-08-31 + +### Other +- updated the following local packages: sn_transfers + ## [0.5.4](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.5.3...sn_networking-v0.5.4) - 2023-08-31 ### Other diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index d68e5b8d3b..8c692a5a90 100644 --- a/sn_networking/Cargo.toml +++ b/sn_networking/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_networking" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.5.4" +version = "0.5.5" [features] default=[] @@ -28,7 +28,7 @@ rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive", "rc" ]} sn_protocol = { path = "../sn_protocol", version = "0.6.2" } sn_dbc = { version = "19.1.1", features = ["serdes"] } -sn_transfers = { path = "../sn_transfers", version = "0.11.2" } +sn_transfers = { path = "../sn_transfers", version = "0.11.3" } thiserror = "1.0.23" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } tracing = { version = "~0.1.26" } diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index 71c248965a..da8afcbc7e 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -1054,6 +1054,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.89.8](https://github.com/maidsafe/safe_network/compare/sn_node-v0.89.7...sn_node-v0.89.8) - 2023-08-31 + +### Other +- update dependencies + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 3bfb3ca324..4f78d216f5 100644 --- a/sn_node/Cargo.toml +++ b/sn_node/Cargo.toml @@ -2,7 +2,7 @@ authors = ["MaidSafe Developers "] description = "Safe Node" name = "sn_node" -version = "0.89.7" +version = "0.89.8" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -50,12 +50,12 @@ serde = { version = "1.0.133", features = [ "derive", "rc" ]} sn_build_info = { path="../sn_build_info", version = "0.1.2" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.6" } sn_dbc = { version = "19.1.1", features = ["serdes"] } -sn_client = { path = "../sn_client", version = "0.88.4" } +sn_client = { path = "../sn_client", version = "0.88.5" } sn_logging = { path = "../sn_logging", version = "0.2.5" } -sn_networking = { path = "../sn_networking", version = "0.5.4" } +sn_networking = { path = "../sn_networking", version = "0.5.5" } sn_protocol = { path = "../sn_protocol", version = "0.6.2" } sn_registers = { path = "../sn_registers", version = "0.2.3" } -sn_transfers = { path = "../sn_transfers", version = "0.11.2" } +sn_transfers = { path = "../sn_transfers", version = "0.11.3" } thiserror = "1.0.23" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } tokio-stream = { version = "~0.1.12" } diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index 9f8d3bc5aa..94aa098d78 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -1016,6 +1016,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.2.100](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.2.99...sn_testnet-v0.2.100) - 2023-08-31 + +### Other +- remove unused async + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index c1b40a6516..d4eaf53614 100644 --- a/sn_testnet/Cargo.toml +++ b/sn_testnet/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_testnet" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.2.99" +version = "0.2.100" [features] # required to pass on flag to node builds diff --git a/sn_transfers/CHANGELOG.md b/sn_transfers/CHANGELOG.md index bedf906069..5ff9627bc1 100644 --- a/sn_transfers/CHANGELOG.md +++ b/sn_transfers/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.3](https://github.com/maidsafe/safe_network/compare/sn_transfers-v0.11.2...sn_transfers-v0.11.3) - 2023-08-31 + +### Other +- remove unused async + ## [0.11.2](https://github.com/maidsafe/safe_network/compare/sn_transfers-v0.11.1...sn_transfers-v0.11.2) - 2023-08-31 ### Added diff --git a/sn_transfers/Cargo.toml b/sn_transfers/Cargo.toml index 5a9c080179..7d0f8028aa 100644 --- a/sn_transfers/Cargo.toml +++ b/sn_transfers/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_transfers" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.11.2" +version = "0.11.3" [dependencies] async-trait = "0.1"