From b041beb19a9d3bf367b68fa8e6d5fcb67e756c87 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 18 Aug 2023 15:10:30 +0000 Subject: [PATCH] chore(release): sn_cli-v0.80.53/sn_client-v0.87.22/sn_networking-v0.4.23/sn_node-v0.88.42/sn_testnet-v0.2.80 --- Cargo.lock | 10 +++++----- sn_cli/CHANGELOG.md | 5 +++++ sn_cli/Cargo.toml | 4 ++-- sn_client/CHANGELOG.md | 5 +++++ sn_client/Cargo.toml | 4 ++-- sn_networking/CHANGELOG.md | 6 ++++++ sn_networking/Cargo.toml | 2 +- sn_node/CHANGELOG.md | 5 +++++ sn_node/Cargo.toml | 6 +++--- sn_testnet/CHANGELOG.md | 5 +++++ sn_testnet/Cargo.toml | 2 +- 11 files changed, 40 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fe045226a2..dbcabbc9d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3725,7 +3725,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.80.52" +version = "0.80.53" dependencies = [ "bincode", "blsttc", @@ -3756,7 +3756,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.87.21" +version = "0.87.22" dependencies = [ "async-trait", "bincode", @@ -3820,7 +3820,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.4.22" +version = "0.4.23" dependencies = [ "async-trait", "blsttc", @@ -3845,7 +3845,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.88.41" +version = "0.88.42" dependencies = [ "assert_fs", "async-trait", @@ -3945,7 +3945,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.2.79" +version = "0.2.80" dependencies = [ "assert_fs", "clap 3.2.25", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 326bae4686..230347599b 100644 --- a/sn_cli/CHANGELOG.md +++ b/sn_cli/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.80.53](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.80.52...sn_cli-v0.80.53) - 2023-08-18 + +### Other +- update dependencies + ## [0.80.52](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.80.51...sn_cli-v0.80.52) - 2023-08-18 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 2af47322e7..92d9418954 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.80.52" +version = "0.80.53" [[bin]] path="src/main.rs" @@ -35,7 +35,7 @@ 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.87.21" } +sn_client = { path = "../sn_client", version = "0.87.22" } sn_dbc = { version = "19.1.1", features = ["serdes"] } sn_transfers = { path = "../sn_transfers", version = "0.10.27" } sn_logging = { path = "../sn_logging", version = "0.2.4" } diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index a0494b9f87..483b5edc76 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.87.22](https://github.com/maidsafe/safe_network/compare/sn_client-v0.87.21...sn_client-v0.87.22) - 2023-08-18 + +### Added +- remove client and node initial join flow + ## [0.87.21](https://github.com/maidsafe/safe_network/compare/sn_client-v0.87.20...sn_client-v0.87.21) - 2023-08-18 ### Other diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index 28dcd0dce3..9d5bdaf94b 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.87.21" +version = "0.87.22" [features] default=[] @@ -28,7 +28,7 @@ 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.4.22" } +sn_networking = { path = "../sn_networking", version = "0.4.23" } sn_protocol = { path = "../sn_protocol", version = "0.5.2" } sn_registers = { path = "../sn_registers", version = "0.2.2" } sn_transfers = { path = "../sn_transfers", version = "0.10.27" } diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index 18bb5c48f7..7e47ea4610 100644 --- a/sn_networking/CHANGELOG.md +++ b/sn_networking/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.23](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.4.22...sn_networking-v0.4.23) - 2023-08-18 + +### Added +- remove client and node initial join flow +- *(network)* perform `kad bootstrap` from the network layer + ## [0.4.22](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.4.21...sn_networking-v0.4.22) - 2023-08-18 ### Other diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index c0e1517009..6638570fb2 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.4.22" +version = "0.4.23" [features] default=[] diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index afa2a4db9a..5b133ff2ce 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -922,6 +922,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.88.42](https://github.com/maidsafe/safe_network/compare/sn_node-v0.88.41...sn_node-v0.88.42) - 2023-08-18 + +### Added +- remove client and node initial join flow + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 61800a8afc..2d03c37874 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.88.41" +version = "0.88.42" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -49,9 +49,9 @@ 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.4" } sn_dbc = { version = "19.1.1", features = ["serdes"] } -sn_client = { path = "../sn_client", version = "0.87.21" } +sn_client = { path = "../sn_client", version = "0.87.22" } sn_logging = { path = "../sn_logging", version = "0.2.4" } -sn_networking = { path = "../sn_networking", version = "0.4.22" } +sn_networking = { path = "../sn_networking", version = "0.4.23" } sn_protocol = { path = "../sn_protocol", version = "0.5.2" } sn_registers = { path = "../sn_registers", version = "0.2.2" } sn_transfers = { path = "../sn_transfers", version = "0.10.27" } diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index 82378c8caa..302dfdc264 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -916,6 +916,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.2.80](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.2.79...sn_testnet-v0.2.80) - 2023-08-18 + +### Other +- update dependencies + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index 3256776a1e..8be9a9310e 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.79" +version = "0.2.80" [features] # required to pass on flag to node builds