From c8f4b5cafeb9deb58a42757d58fa26eb2a12cb2f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 19 Oct 2023 11:57:42 +0000 Subject: [PATCH] chore(release): sn_cli-v0.84.3/sn_client-v0.94.2/sn_networking-v0.8.36/sn_node-v0.94.3/sn_testnet-v0.2.218 --- 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 2178f40216..d67b323b11 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4301,7 +4301,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.84.2" +version = "0.84.3" dependencies = [ "bincode", "blsttc", @@ -4332,7 +4332,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.94.1" +version = "0.94.2" dependencies = [ "async-trait", "bincode", @@ -4384,7 +4384,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.8.35" +version = "0.8.36" dependencies = [ "async-trait", "blsttc", @@ -4413,7 +4413,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.94.2" +version = "0.94.3" dependencies = [ "assert_fs", "async-trait", @@ -4518,7 +4518,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.2.217" +version = "0.2.218" dependencies = [ "assert_fs", "clap 3.2.25", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 64627b298e..1848ab48fd 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.3](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.84.2...sn_cli-v0.84.3) - 2023-10-19 + +### Other +- update dependencies + ## [0.84.2](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.84.1...sn_cli-v0.84.2) - 2023-10-19 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 082a548d69..cd7f49c507 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.2" +version = "0.84.3" [[bin]] path="src/main.rs" @@ -38,7 +38,7 @@ indicatif = { version = "0.17.5", features = ["tokio"] } 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.94.1" } +sn_client = { path = "../sn_client", version = "0.94.2" } sn_transfers = { path = "../sn_transfers", version = "0.14.3" } sn_logging = { path = "../sn_logging", version = "0.2.11" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.7" } diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 50c9205379..db7fc208b0 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.94.2](https://github.com/maidsafe/safe_network/compare/sn_client-v0.94.1...sn_client-v0.94.2) - 2023-10-19 + +### Fixed +- *(network)* emit NetworkEvent when we publish a gossipsub msg + ## [0.94.1](https://github.com/maidsafe/safe_network/compare/sn_client-v0.94.0...sn_client-v0.94.1) - 2023-10-18 ### Other diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index d10a6a0d93..f926fb669c 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.94.1" +version = "0.94.2" [features] default=[] @@ -30,7 +30,7 @@ rand = { version = "~0.8.5", features = ["small_rng"] } rayon = "1.7.0" self_encryption = "~0.28.5" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_networking = { path = "../sn_networking", version = "0.8.35" } +sn_networking = { path = "../sn_networking", version = "0.8.36" } sn_protocol = { path = "../sn_protocol", version = "0.7.24" } sn_registers = { path = "../sn_registers", version = "0.3.1" } sn_transfers = { path = "../sn_transfers", version = "0.14.3" } diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index f6317981d3..652ad73138 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.36](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.8.35...sn_networking-v0.8.36) - 2023-10-19 + +### Fixed +- *(network)* emit NetworkEvent when we publish a gossipsub msg + ## [0.8.35](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.8.34...sn_networking-v0.8.35) - 2023-10-18 ### Other diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index 9b988c2655..24445770e2 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.35" +version = "0.8.36" [features] default=[] diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index a91e2a381f..7b810c984d 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -1748,6 +1748,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - *(test)* enable logging for gossip tests +## [0.94.3](https://github.com/maidsafe/safe_network/compare/sn_node-v0.94.2...sn_node-v0.94.3) - 2023-10-19 + +### Fixed +- *(network)* emit NetworkEvent when we publish a gossipsub msg + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 152ab4a0f4..9b28a6832b 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.94.2" +version = "0.94.3" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -56,9 +56,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.7" } -sn_client = { path = "../sn_client", version = "0.94.1" } +sn_client = { path = "../sn_client", version = "0.94.2" } sn_logging = { path = "../sn_logging", version = "0.2.11" } -sn_networking = { path = "../sn_networking", version = "0.8.35" } +sn_networking = { path = "../sn_networking", version = "0.8.36" } sn_protocol = { path = "../sn_protocol", version = "0.7.24" } sn_registers = { path = "../sn_registers", version = "0.3.1" } sn_transfers = { path = "../sn_transfers", version = "0.14.3" } diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index bf34d15019..f2275a73df 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -1610,6 +1610,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.2.218](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.2.217...sn_testnet-v0.2.218) - 2023-10-19 + +### Other +- update dependencies + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index ebfe84e542..78fe4ab86b 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.217" +version = "0.2.218" [features] # required to pass on flag to node builds