diff --git a/Cargo.lock b/Cargo.lock index 58b5af0bd5..96f332a4a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4246,7 +4246,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.83.12" +version = "0.83.13" dependencies = [ "bincode", "blsttc", @@ -4276,7 +4276,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.91.7" +version = "0.91.8" dependencies = [ "async-trait", "bincode", @@ -4327,7 +4327,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.8.5" +version = "0.8.6" dependencies = [ "async-trait", "blsttc", @@ -4355,7 +4355,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.91.11" +version = "0.91.12" dependencies = [ "assert_fs", "async-trait", @@ -4460,7 +4460,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.2.174" +version = "0.2.175" dependencies = [ "assert_fs", "clap 3.2.25", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 3c87c226b2..384e221d3b 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.83.13](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.83.12...sn_cli-v0.83.13) - 2023-10-03 + +### Other +- update dependencies + ## [0.83.12](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.83.11...sn_cli-v0.83.12) - 2023-10-02 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 42f97c17ba..1e04d407ec 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.83.12" +version = "0.83.13" [[bin]] path="src/main.rs" @@ -37,7 +37,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.91.7" } +sn_client = { path = "../sn_client", version = "0.91.8" } sn_transfers = { path = "../sn_transfers", version = "0.13.2" } sn_logging = { path = "../sn_logging", version = "0.2.9" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.7" } diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 4a95d8362d..8edafdf700 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.91.8](https://github.com/maidsafe/safe_network/compare/sn_client-v0.91.7...sn_client-v0.91.8) - 2023-10-03 + +### Other +- updated the following local packages: sn_networking + ## [0.91.7](https://github.com/maidsafe/safe_network/compare/sn_client-v0.91.6...sn_client-v0.91.7) - 2023-10-02 ### Other diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index 09c7c9c42e..6de1c69e26 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.91.7" +version = "0.91.8" [features] default=[] @@ -30,7 +30,7 @@ rand = { version = "~0.8.5", features = ["small_rng"] } rayon = "1.7.0" self_encryption = "~0.28.4" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_networking = { path = "../sn_networking", version = "0.8.5" } +sn_networking = { path = "../sn_networking", version = "0.8.6" } sn_protocol = { path = "../sn_protocol", version = "0.7.7" } sn_registers = { path = "../sn_registers", version = "0.2.6" } sn_transfers = { path = "../sn_transfers", version = "0.13.2" } diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index 5dfc5f786a..e4ea043c98 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.8.6](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.8.5...sn_networking-v0.8.6) - 2023-10-03 + +### Added +- *(node)* remove failed records if write fails + ## [0.8.5](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.8.4...sn_networking-v0.8.5) - 2023-10-02 ### Other diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index aa71fb519c..e32ca0e516 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.8.5" +version = "0.8.6" [features] default=[] diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index 86678efeb1..3538ae1b69 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -1492,6 +1492,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - remove tracing feat deps +## [0.91.12](https://github.com/maidsafe/safe_network/compare/sn_node-v0.91.11...sn_node-v0.91.12) - 2023-10-03 + +### Added +- *(node)* remove failed records if write fails + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 834971d54e..f24508e693 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.91.11" +version = "0.91.12" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -55,9 +55,9 @@ self_encryption = "~0.28.4" 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.7" } -sn_client = { path = "../sn_client", version = "0.91.7" } +sn_client = { path = "../sn_client", version = "0.91.8" } sn_logging = { path = "../sn_logging", version = "0.2.9" } -sn_networking = { path = "../sn_networking", version = "0.8.5" } +sn_networking = { path = "../sn_networking", version = "0.8.6" } sn_protocol = { path = "../sn_protocol", version = "0.7.7" } sn_registers = { path = "../sn_registers", version = "0.2.6" } sn_transfers = { path = "../sn_transfers", version = "0.13.2" } diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index 0fc8bcbccf..1662dacade 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -1391,6 +1391,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.2.175](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.2.174...sn_testnet-v0.2.175) - 2023-10-03 + +### Other +- update dependencies + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index 9d0a276a29..9af3ffbf69 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.174" +version = "0.2.175" [features] # required to pass on flag to node builds