diff --git a/Cargo.lock b/Cargo.lock index 4b5e1f475e..54b57eaf6b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4376,7 +4376,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.84.44" +version = "0.84.45" dependencies = [ "bincode", "blsttc", @@ -4409,7 +4409,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.95.22" +version = "0.95.23" dependencies = [ "async-trait", "bincode", @@ -4465,7 +4465,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.9.21" +version = "0.9.22" dependencies = [ "async-trait", "blsttc", @@ -4493,7 +4493,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.96.29" +version = "0.96.30" dependencies = [ "assert_fs", "async-trait", @@ -4548,7 +4548,7 @@ dependencies = [ [[package]] name = "sn_peers_acquisition" -version = "0.1.8" +version = "0.1.9" dependencies = [ "clap 4.4.7", "color-eyre", @@ -4561,7 +4561,7 @@ dependencies = [ [[package]] name = "sn_protocol" -version = "0.8.12" +version = "0.8.13" dependencies = [ "blsttc", "bytes", @@ -4599,7 +4599,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.2.257" +version = "0.2.258" dependencies = [ "assert_fs", "clap 3.2.25", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 8353a662a2..87a53505c5 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.84.45](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.84.44...sn_cli-v0.84.45) - 2023-11-06 + +### Added +- *(deps)* upgrade libp2p to 0.53 + ## [0.84.44](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.84.43...sn_cli-v0.84.44) - 2023-11-03 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 38e38b2ff7..1751be9a19 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.84.44" +version = "0.84.45" [[bin]] path="src/main.rs" @@ -40,11 +40,11 @@ libp2p = { version="0.53", features = ["identify", "kad"] } rayon = "1.8.0" 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.95.22" } +sn_client = { path = "../sn_client", version = "0.95.23" } sn_transfers = { path = "../sn_transfers", version = "0.14.11" } sn_logging = { path = "../sn_logging", version = "0.2.14" } -sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.8" } -sn_protocol = { path = "../sn_protocol", version = "0.8.12" } +sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.9" } +sn_protocol = { path = "../sn_protocol", version = "0.8.13" } tempfile = "3.6.0" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } tracing = { version = "~0.1.26" } diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 4e523e7d17..9ecfb3e67d 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.95.23](https://github.com/maidsafe/safe_network/compare/sn_client-v0.95.22...sn_client-v0.95.23) - 2023-11-06 + +### Added +- *(deps)* upgrade libp2p to 0.53 + ## [0.95.22](https://github.com/maidsafe/safe_network/compare/sn_client-v0.95.21...sn_client-v0.95.22) - 2023-11-03 ### Other diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index 8c7cd8205f..4f2208c09f 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.95.22" +version = "0.95.23" [features] default=[] @@ -31,8 +31,8 @@ rand = { version = "~0.8.5", features = ["small_rng"] } rayon = "1.8.0" self_encryption = "~0.28.5" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_networking = { path = "../sn_networking", version = "0.9.21" } -sn_protocol = { path = "../sn_protocol", version = "0.8.12" } +sn_networking = { path = "../sn_networking", version = "0.9.22" } +sn_protocol = { path = "../sn_protocol", version = "0.8.13" } sn_registers = { path = "../sn_registers", version = "0.3.3" } sn_transfers = { path = "../sn_transfers", version = "0.14.11" } tempfile = "3.6.0" diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index 84368888da..9779925f35 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.9.22](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.9.21...sn_networking-v0.9.22) - 2023-11-06 + +### Added +- *(deps)* upgrade libp2p to 0.53 + ## [0.9.21](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.9.20...sn_networking-v0.9.21) - 2023-11-03 ### Added diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index aa6ecd609f..ee867b4844 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.9.21" +version = "0.9.22" [features] default=[] @@ -28,7 +28,7 @@ prometheus-client = { version = "0.22", optional = true } rand = { version = "~0.8.5", features = ["small_rng"] } rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_protocol = { path = "../sn_protocol", version = "0.8.12" } +sn_protocol = { path = "../sn_protocol", version = "0.8.13" } sn_transfers = { path = "../sn_transfers", version = "0.14.11" } sysinfo = { version = "0.29.0", default-features = false, optional = true } thiserror = "1.0.23" diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index d8cd5443f1..e7e70c3161 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -2008,6 +2008,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.96.30](https://github.com/maidsafe/safe_network/compare/sn_node-v0.96.29...sn_node-v0.96.30) - 2023-11-06 + +### Added +- *(deps)* upgrade libp2p to 0.53 + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 62567b7ce2..eba4a35941 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.96.29" +version = "0.96.30" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -59,11 +59,11 @@ rayon = "1.8.0" self_encryption = "~0.28.5" 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.8" } -sn_client = { path = "../sn_client", version = "0.95.22" } +sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.9" } +sn_client = { path = "../sn_client", version = "0.95.23" } sn_logging = { path = "../sn_logging", version = "0.2.14" } -sn_networking = { path = "../sn_networking", version = "0.9.21" } -sn_protocol = { path = "../sn_protocol", version = "0.8.12" } +sn_networking = { path = "../sn_networking", version = "0.9.22" } +sn_protocol = { path = "../sn_protocol", version = "0.8.13" } sn_registers = { path = "../sn_registers", version = "0.3.3" } sn_transfers = { path = "../sn_transfers", version = "0.14.11" } thiserror = "1.0.23" diff --git a/sn_peers_acquisition/CHANGELOG.md b/sn_peers_acquisition/CHANGELOG.md index 99206cb4da..4226e3dc4d 100644 --- a/sn_peers_acquisition/CHANGELOG.md +++ b/sn_peers_acquisition/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.9](https://github.com/maidsafe/safe_network/compare/sn_peers_acquisition-v0.1.8...sn_peers_acquisition-v0.1.9) - 2023-11-06 + +### Added +- *(deps)* upgrade libp2p to 0.53 + ## [0.1.8](https://github.com/maidsafe/safe_network/compare/sn_peers_acquisition-v0.1.7...sn_peers_acquisition-v0.1.8) - 2023-10-26 ### Fixed diff --git a/sn_peers_acquisition/Cargo.toml b/sn_peers_acquisition/Cargo.toml index 223b7a8008..c058e3977e 100644 --- a/sn_peers_acquisition/Cargo.toml +++ b/sn_peers_acquisition/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_peers_acquisition" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.1.8" +version = "0.1.9" [features] default = [] diff --git a/sn_protocol/CHANGELOG.md b/sn_protocol/CHANGELOG.md index 47d5b6d704..665643ed64 100644 --- a/sn_protocol/CHANGELOG.md +++ b/sn_protocol/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.13](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.8.12...sn_protocol-v0.8.13) - 2023-11-06 + +### Added +- *(deps)* upgrade libp2p to 0.53 + ## [0.8.12](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.8.11...sn_protocol-v0.8.12) - 2023-11-02 ### Other diff --git a/sn_protocol/Cargo.toml b/sn_protocol/Cargo.toml index 1bfca18f86..9af8467fff 100644 --- a/sn_protocol/Cargo.toml +++ b/sn_protocol/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "sn_protocol" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.8.12" +version = "0.8.13" [dependencies] bls = { package = "blsttc", version = "8.0.1" } diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index 3a66572286..e637fb0879 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -1810,6 +1810,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.2.258](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.2.257...sn_testnet-v0.2.258) - 2023-11-06 + +### Added +- *(deps)* upgrade libp2p to 0.53 + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index 33ffbf08ea..21344d13f0 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.257" +version = "0.2.258" [features] # required to pass on flag to node builds