From 2955c91f6176a67ed52d284a2e499b7f252ecf5f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 28 Sep 2023 07:50:12 +0000 Subject: [PATCH] chore(release): sn_cli-v0.83.4/sn_client-v0.91.3/sn_transfers-v0.13.1/sn_node-v0.91.3/sn_testnet-v0.2.167/sn_networking-v0.8.2/sn_protocol-v0.7.5 --- Cargo.lock | 14 +++++++------- sn_cli/CHANGELOG.md | 5 +++++ sn_cli/Cargo.toml | 8 ++++---- sn_client/CHANGELOG.md | 5 +++++ sn_client/Cargo.toml | 8 ++++---- sn_networking/CHANGELOG.md | 5 +++++ sn_networking/Cargo.toml | 6 +++--- sn_node/CHANGELOG.md | 5 +++++ sn_node/Cargo.toml | 10 +++++----- sn_protocol/CHANGELOG.md | 5 +++++ sn_protocol/Cargo.toml | 4 ++-- sn_testnet/CHANGELOG.md | 5 +++++ sn_testnet/Cargo.toml | 2 +- sn_transfers/CHANGELOG.md | 5 +++++ sn_transfers/Cargo.toml | 2 +- 15 files changed, 62 insertions(+), 27 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eb61f3d781..8ad1b80e24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4286,7 +4286,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.83.3" +version = "0.83.4" dependencies = [ "bincode", "blsttc", @@ -4316,7 +4316,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.91.2" +version = "0.91.3" dependencies = [ "async-trait", "bincode", @@ -4367,7 +4367,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.8.1" +version = "0.8.2" dependencies = [ "async-trait", "blsttc", @@ -4395,7 +4395,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.91.2" +version = "0.91.3" dependencies = [ "assert_fs", "async-trait", @@ -4463,7 +4463,7 @@ dependencies = [ [[package]] name = "sn_protocol" -version = "0.7.4" +version = "0.7.5" dependencies = [ "blsttc", "bytes", @@ -4500,7 +4500,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.2.166" +version = "0.2.167" dependencies = [ "assert_fs", "clap 3.2.25", @@ -4523,7 +4523,7 @@ dependencies = [ [[package]] name = "sn_transfers" -version = "0.13.0" +version = "0.13.1" dependencies = [ "assert_fs", "bincode", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 4e73628326..37fdc3499c 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.4](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.83.3...sn_cli-v0.83.4) - 2023-09-28 + +### Added +- client to client transfers + ## [0.83.3](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.83.2...sn_cli-v0.83.3) - 2023-09-27 ### Added diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 8ae4e45245..82508ac71b 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.3" +version = "0.83.4" [[bin]] path="src/main.rs" @@ -37,11 +37,11 @@ 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.2" } -sn_transfers = { path = "../sn_transfers", version = "0.13.0" } +sn_client = { path = "../sn_client", version = "0.91.3" } +sn_transfers = { path = "../sn_transfers", version = "0.13.1" } sn_logging = { path = "../sn_logging", version = "0.2.9" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.7" } -sn_protocol = { path = "../sn_protocol", version = "0.7.4" } +sn_protocol = { path = "../sn_protocol", version = "0.7.5" } tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } tracing = { version = "~0.1.26" } tracing-core = "0.1.30" diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 37fa2351d5..8240f4d25f 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.3](https://github.com/maidsafe/safe_network/compare/sn_client-v0.91.2...sn_client-v0.91.3) - 2023-09-28 + +### Added +- client to client transfers + ## [0.91.2](https://github.com/maidsafe/safe_network/compare/sn_client-v0.91.1...sn_client-v0.91.2) - 2023-09-27 ### Added diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index dd47754388..87d953695d 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.2" +version = "0.91.3" [features] default=[] @@ -30,10 +30,10 @@ 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.1" } -sn_protocol = { path = "../sn_protocol", version = "0.7.4" } +sn_networking = { path = "../sn_networking", version = "0.8.2" } +sn_protocol = { path = "../sn_protocol", version = "0.7.5" } sn_registers = { path = "../sn_registers", version = "0.2.6" } -sn_transfers = { path = "../sn_transfers", version = "0.13.0" } +sn_transfers = { path = "../sn_transfers", version = "0.13.1" } tempfile = "3.6.0" thiserror = "1.0.23" tiny-keccak = "~2.0.2" diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index cb2931da76..c3da1787d0 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.2](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.8.1...sn_networking-v0.8.2) - 2023-09-28 + +### Other +- updated the following local packages: sn_transfers + ## [0.8.1](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.8.0...sn_networking-v0.8.1) - 2023-09-27 ### Added diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index d1ec11d8ef..989a26edc4 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.1" +version = "0.8.2" [features] default=[] @@ -30,8 +30,8 @@ prometheus-client = { version = "0.21.2", 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.7.4" } -sn_transfers = { path = "../sn_transfers", version = "0.13.0" } +sn_protocol = { path = "../sn_protocol", version = "0.7.5" } +sn_transfers = { path = "../sn_transfers", version = "0.13.1" } thiserror = "1.0.23" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } tracing = { version = "~0.1.26" } diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index 3c64205fd8..d7c90717ce 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -1446,6 +1446,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - *(release)* sn_cli-v0.83.2/sn_client-v0.91.1 +## [0.91.3](https://github.com/maidsafe/safe_network/compare/sn_node-v0.91.2...sn_node-v0.91.3) - 2023-09-28 + +### Added +- client to client transfers + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index c5bee8a02e..65a7c41d97 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.2" +version = "0.91.3" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -55,12 +55,12 @@ 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.2" } +sn_client = { path = "../sn_client", version = "0.91.3" } sn_logging = { path = "../sn_logging", version = "0.2.9" } -sn_networking = { path = "../sn_networking", version = "0.8.1" } -sn_protocol = { path = "../sn_protocol", version = "0.7.4" } +sn_networking = { path = "../sn_networking", version = "0.8.2" } +sn_protocol = { path = "../sn_protocol", version = "0.7.5" } sn_registers = { path = "../sn_registers", version = "0.2.6" } -sn_transfers = { path = "../sn_transfers", version = "0.13.0" } +sn_transfers = { path = "../sn_transfers", version = "0.13.1" } thiserror = "1.0.23" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } tokio-stream = { version = "~0.1.12" } diff --git a/sn_protocol/CHANGELOG.md b/sn_protocol/CHANGELOG.md index c855ab2392..da90386c52 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.7.5](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.7.4...sn_protocol-v0.7.5) - 2023-09-28 + +### Other +- updated the following local packages: sn_transfers + ## [0.7.4](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.7.3...sn_protocol-v0.7.4) - 2023-09-27 ### Other diff --git a/sn_protocol/Cargo.toml b/sn_protocol/Cargo.toml index 33e8f69a82..1f47597bf2 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.7.4" +version = "0.7.5" [dependencies] bls = { package = "blsttc", version = "8.0.1" } @@ -18,7 +18,7 @@ hex = "~0.4.3" libp2p = { version="0.52", features = ["identify", "kad"] } rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_transfers = { path = "../sn_transfers", version = "0.13.0" } +sn_transfers = { path = "../sn_transfers", version = "0.13.1" } sn_registers = { path = "../sn_registers", version = "0.2.6" } thiserror = "1.0.23" tracing = { version = "~0.1.26" } diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index 312c228324..0ee4b2c838 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -1351,6 +1351,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.2.167](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.2.166...sn_testnet-v0.2.167) - 2023-09-28 + +### Other +- update dependencies + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index 7be5c4f7fc..f99f34021e 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.166" +version = "0.2.167" [features] # required to pass on flag to node builds diff --git a/sn_transfers/CHANGELOG.md b/sn_transfers/CHANGELOG.md index c2fd879c75..39cbc267e9 100644 --- a/sn_transfers/CHANGELOG.md +++ b/sn_transfers/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.1](https://github.com/maidsafe/safe_network/compare/sn_transfers-v0.13.0...sn_transfers-v0.13.1) - 2023-09-28 + +### Added +- client to client transfers + ## [0.13.0](https://github.com/maidsafe/safe_network/compare/sn_transfers-v0.12.2...sn_transfers-v0.13.0) - 2023-09-27 ### Added diff --git a/sn_transfers/Cargo.toml b/sn_transfers/Cargo.toml index 6b0a11de47..e42a126431 100644 --- a/sn_transfers/Cargo.toml +++ b/sn_transfers/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_transfers" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.13.0" +version = "0.13.1" [dependencies] bincode = "1.3.3"