diff --git a/Cargo.lock b/Cargo.lock index 64a8e8909b..6665168008 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3725,7 +3725,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.80.50" +version = "0.80.51" dependencies = [ "bincode", "blsttc", @@ -3756,7 +3756,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.87.19" +version = "0.87.20" dependencies = [ "async-trait", "bincode", @@ -3845,7 +3845,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.88.39" +version = "0.88.40" dependencies = [ "assert_fs", "async-trait", @@ -3945,7 +3945,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.2.77" +version = "0.2.78" dependencies = [ "assert_fs", "clap 3.2.25", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 408e294c47..8f80ec6d97 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.51](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.80.50...sn_cli-v0.80.51) - 2023-08-17 + +### Other +- update dependencies + ## [0.80.50](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.80.49...sn_cli-v0.80.50) - 2023-08-17 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 4a134f2fbb..d69190e355 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.50" +version = "0.80.51" [[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.19" } +sn_client = { path = "../sn_client", version = "0.87.20" } sn_dbc = { version = "19.1.1", features = ["serdes"] } sn_transfers = { path = "../sn_transfers", version = "0.10.26" } sn_logging = { path = "../sn_logging", version = "0.2.4" } diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 31ab5a4fad..a409a79dde 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.20](https://github.com/maidsafe/safe_network/compare/sn_client-v0.87.19...sn_client-v0.87.20) - 2023-08-17 + +### Fixed +- *(client)* start bootstrap when we are connected to one peer + ## [0.87.19](https://github.com/maidsafe/safe_network/compare/sn_client-v0.87.18...sn_client-v0.87.19) - 2023-08-17 ### Other diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index d4efc53525..795c815e37 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.19" +version = "0.87.20" [features] default=[] diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index 212f7fc56a..671107bda9 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -912,6 +912,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.88.40](https://github.com/maidsafe/safe_network/compare/sn_node-v0.88.39...sn_node-v0.88.40) - 2023-08-17 + +### Other +- update dependencies + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 32e7ddccbe..2e0ba6f0b3 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.39" +version = "0.88.40" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -49,7 +49,7 @@ 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.19" } +sn_client = { path = "../sn_client", version = "0.87.20" } sn_logging = { path = "../sn_logging", version = "0.2.4" } sn_networking = { path = "../sn_networking", version = "0.4.21" } sn_protocol = { path = "../sn_protocol", version = "0.5.1" } diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index eacafc639d..2e22d06ff2 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -906,6 +906,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.2.78](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.2.77...sn_testnet-v0.2.78) - 2023-08-17 + +### Other +- update dependencies + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index 74221b558d..7c1c6113ab 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.77" +version = "0.2.78" [features] # required to pass on flag to node builds