From b1b4cd3f24d7e12f915563c9b51f171d64add6e1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 3 Oct 2023 12:00:16 +0000 Subject: [PATCH] chore(release): sn_cli-v0.83.16/sn_networking-v0.8.8/sn_node-v0.91.15/sn_testnet-v0.2.178/sn_client-v0.91.10 --- 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 | 5 +++++ 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, 39 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 993b211796..5c74f6d6e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4246,7 +4246,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.83.15" +version = "0.83.16" dependencies = [ "bincode", "blsttc", @@ -4276,7 +4276,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.91.9" +version = "0.91.10" dependencies = [ "async-trait", "bincode", @@ -4327,7 +4327,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.8.7" +version = "0.8.8" dependencies = [ "async-trait", "blsttc", @@ -4355,7 +4355,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.91.14" +version = "0.91.15" dependencies = [ "assert_fs", "async-trait", @@ -4460,7 +4460,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.2.177" +version = "0.2.178" dependencies = [ "assert_fs", "clap 3.2.25", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 45bce3af7f..cb286460f2 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.16](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.83.15...sn_cli-v0.83.16) - 2023-10-03 + +### Other +- update dependencies + ## [0.83.15](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.83.14...sn_cli-v0.83.15) - 2023-10-03 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 4c2ddf31b2..c282e03875 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.15" +version = "0.83.16" [[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.9" } +sn_client = { path = "../sn_client", version = "0.91.10" } sn_transfers = { path = "../sn_transfers", version = "0.13.2" } sn_logging = { path = "../sn_logging", version = "0.2.10" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.7" } diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 84e934c451..003391e216 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.10](https://github.com/maidsafe/safe_network/compare/sn_client-v0.91.9...sn_client-v0.91.10) - 2023-10-03 + +### Other +- updated the following local packages: sn_networking + ## [0.91.9](https://github.com/maidsafe/safe_network/compare/sn_client-v0.91.8...sn_client-v0.91.9) - 2023-10-03 ### Added diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index ce6535d160..906938f400 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.9" +version = "0.91.10" [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.7" } +sn_networking = { path = "../sn_networking", version = "0.8.8" } 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 682ae0ec2d..78ab82ed07 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.8](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.8.7...sn_networking-v0.8.8) - 2023-10-03 + +### Other +- log status of pending_get_record + ## [0.8.7](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.8.6...sn_networking-v0.8.7) - 2023-10-03 ### Added diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index 289aa6e79f..882fc897e2 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.7" +version = "0.8.8" [features] default=[] diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index 38c1fdaf64..41f20788b9 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -1507,6 +1507,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.91.15](https://github.com/maidsafe/safe_network/compare/sn_node-v0.91.14...sn_node-v0.91.15) - 2023-10-03 + +### Other +- update dependencies + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 11de08b0db..9f1330a2f3 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.14" +version = "0.91.15" 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.9" } +sn_client = { path = "../sn_client", version = "0.91.10" } sn_logging = { path = "../sn_logging", version = "0.2.10" } -sn_networking = { path = "../sn_networking", version = "0.8.7" } +sn_networking = { path = "../sn_networking", version = "0.8.8" } 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 51893348fc..5e663331dd 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -1406,6 +1406,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.2.178](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.2.177...sn_testnet-v0.2.178) - 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 5642c39c34..93c6e6923c 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.177" +version = "0.2.178" [features] # required to pass on flag to node builds