diff --git a/Cargo.lock b/Cargo.lock index cfcba1ec4b..c694aa844c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4530,7 +4530,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.86.16" +version = "0.86.17" dependencies = [ "bincode", "blsttc", @@ -4564,7 +4564,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.98.12" +version = "0.98.13" dependencies = [ "async-trait", "bincode", @@ -4597,7 +4597,7 @@ dependencies = [ [[package]] name = "sn_faucet" -version = "0.1.38" +version = "0.1.39" dependencies = [ "blsttc", "clap 4.4.7", @@ -4638,7 +4638,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.10.16" +version = "0.10.17" dependencies = [ "async-trait", "blsttc", @@ -4667,7 +4667,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.98.28" +version = "0.98.29" dependencies = [ "assert_fs", "async-trait", @@ -4720,7 +4720,7 @@ dependencies = [ [[package]] name = "sn_node_rpc_client" -version = "0.1.38" +version = "0.1.39" dependencies = [ "assert_fs", "blsttc", @@ -4801,7 +4801,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.2.300" +version = "0.2.301" dependencies = [ "assert_fs", "clap 3.2.25", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index b554915c39..554ebf6768 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.86.17](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.86.16...sn_cli-v0.86.17) - 2023-11-23 + +### Other +- update dependencies + ## [0.86.16](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.86.15...sn_cli-v0.86.16) - 2023-11-22 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 44b3b94a76..8caaf3c5f6 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.86.16" +version = "0.86.17" [[bin]] path="src/main.rs" @@ -40,7 +40,7 @@ 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.98.12" } +sn_client = { path = "../sn_client", version = "0.98.13" } sn_transfers = { path = "../sn_transfers", version = "0.14.20" } sn_logging = { path = "../sn_logging", version = "0.2.15" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.10" } diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index f07224472a..1b7ad63fdb 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.98.13](https://github.com/maidsafe/safe_network/compare/sn_client-v0.98.12...sn_client-v0.98.13) - 2023-11-23 + +### Other +- updated the following local packages: sn_networking + ## [0.98.12](https://github.com/maidsafe/safe_network/compare/sn_client-v0.98.11...sn_client-v0.98.12) - 2023-11-22 ### Other diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index 24abcfc701..a9ff6fb292 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.98.12" +version = "0.98.13" [features] default=[] @@ -31,7 +31,7 @@ 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.10.16" } +sn_networking = { path = "../sn_networking", version = "0.10.17" } sn_protocol = { path = "../sn_protocol", version = "0.8.28" } sn_registers = { path = "../sn_registers", version = "0.3.3" } sn_transfers = { path = "../sn_transfers", version = "0.14.20" } diff --git a/sn_faucet/CHANGELOG.md b/sn_faucet/CHANGELOG.md index 2d4ef5c968..891f36f15e 100644 --- a/sn_faucet/CHANGELOG.md +++ b/sn_faucet/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.39](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.1.38...sn_faucet-v0.1.39) - 2023-11-23 + +### Other +- update dependencies + ## [0.1.38](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.1.37...sn_faucet-v0.1.38) - 2023-11-22 ### Other diff --git a/sn_faucet/Cargo.toml b/sn_faucet/Cargo.toml index 69f05de7dd..1f70696fb4 100644 --- a/sn_faucet/Cargo.toml +++ b/sn_faucet/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_faucet" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.1.38" +version = "0.1.39" [[bin]] path="src/main.rs" @@ -19,7 +19,7 @@ bls = { package = "blsttc", version = "8.0.1" } clap = { version = "4.2.1", features = ["derive"] } color-eyre = "0.6.2" dirs-next = "~2.0.0" -sn_client = { path = "../sn_client", version = "0.98.12" } +sn_client = { path = "../sn_client", version = "0.98.13" } sn_logging = { path = "../sn_logging", version = "0.2.15" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.1.10" } sn_transfers = { path = "../sn_transfers", version = "0.14.20" } diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index 66a3e35495..2cb772a3ca 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.10.17](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.10.16...sn_networking-v0.10.17) - 2023-11-23 + +### Other +- *(networking)* improve logs around replication + ## [0.10.16](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.10.15...sn_networking-v0.10.16) - 2023-11-22 ### Other diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index 69356efa62..72c86a5b8e 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.10.16" +version = "0.10.17" [features] default=[] diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index e16e4c5402..fced046e6f 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -2258,6 +2258,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - *(release)* non gossip handler shall not throw gossip msg up +## [0.98.29](https://github.com/maidsafe/safe_network/compare/sn_node-v0.98.28...sn_node-v0.98.29) - 2023-11-23 + +### Other +- update dependencies + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 26143ac67b..5b9a281c32 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.98.28" +version = "0.98.29" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -52,9 +52,9 @@ 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.10" } -sn_client = { path = "../sn_client", version = "0.98.12" } +sn_client = { path = "../sn_client", version = "0.98.13" } sn_logging = { path = "../sn_logging", version = "0.2.15" } -sn_networking = { path = "../sn_networking", version = "0.10.16" } +sn_networking = { path = "../sn_networking", version = "0.10.17" } sn_protocol = { path = "../sn_protocol", version = "0.8.28" } sn_registers = { path = "../sn_registers", version = "0.3.3" } sn_transfers = { path = "../sn_transfers", version = "0.14.20" } diff --git a/sn_node_rpc_client/CHANGELOG.md b/sn_node_rpc_client/CHANGELOG.md index cbb5deb539..49ca2c68e6 100644 --- a/sn_node_rpc_client/CHANGELOG.md +++ b/sn_node_rpc_client/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.39](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.1.38...sn_node_rpc_client-v0.1.39) - 2023-11-23 + +### Other +- update dependencies + ## [0.1.38](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.1.37...sn_node_rpc_client-v0.1.38) - 2023-11-22 ### Other diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index 49bf79ace7..940ea423e8 100644 --- a/sn_node_rpc_client/Cargo.toml +++ b/sn_node_rpc_client/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_node_rpc_client" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.1.38" +version = "0.1.39" [[bin]] path="src/main.rs" @@ -21,9 +21,9 @@ clap = { version = "4.2.1", features = ["derive"] } color-eyre = "0.6.2" hex = "~0.4.3" libp2p = { version="0.52", features = ["kad"]} -sn_client = { path = "../sn_client", version = "0.98.12" } +sn_client = { path = "../sn_client", version = "0.98.13" } sn_logging = { path = "../sn_logging", version = "0.2.15" } -sn_node = { path = "../sn_node", version = "0.98.28" } +sn_node = { path = "../sn_node", version = "0.98.29" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.1.10" } sn_protocol = { path = "../sn_protocol", version = "0.8.28" } sn_transfers = { path = "../sn_transfers", version = "0.14.20" } diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index 5b5fa3bd23..08b1d29d32 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -2025,6 +2025,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.2.301](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.2.300...sn_testnet-v0.2.301) - 2023-11-23 + +### Other +- update dependencies + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index 8a46db93c5..8cc83db9db 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.300" +version = "0.2.301" [features] # required to pass on flag to node builds