From ae285ac96c63b95b559107bae39ab4cdb9d1232f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 10 Nov 2023 16:12:33 +0000 Subject: [PATCH] chore(release): sn_cli-v0.85.10/sn_transfers-v0.14.14/sn_faucet-v0.1.11/sn_node-v0.98.1/sn_node_rpc_client-v0.1.11/sn_testnet-v0.2.273/sn_client-v0.97.1/sn_networking-v0.10.1/sn_protocol-v0.8.21 --- Cargo.lock | 18 +++++++++--------- sn_cli/CHANGELOG.md | 9 +++++++++ sn_cli/Cargo.toml | 8 ++++---- sn_client/CHANGELOG.md | 5 +++++ sn_client/Cargo.toml | 8 ++++---- sn_faucet/CHANGELOG.md | 5 +++++ sn_faucet/Cargo.toml | 6 +++--- sn_networking/CHANGELOG.md | 5 +++++ sn_networking/Cargo.toml | 6 +++--- sn_node/CHANGELOG.md | 5 +++++ sn_node/Cargo.toml | 10 +++++----- sn_node_rpc_client/CHANGELOG.md | 5 +++++ sn_node_rpc_client/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 | 6 ++++++ sn_transfers/Cargo.toml | 2 +- 19 files changed, 87 insertions(+), 37 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 50c72460a0..0fb45a07a7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4530,7 +4530,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.85.9" +version = "0.85.10" dependencies = [ "bincode", "blsttc", @@ -4564,7 +4564,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.97.0" +version = "0.97.1" dependencies = [ "async-trait", "bincode", @@ -4597,7 +4597,7 @@ dependencies = [ [[package]] name = "sn_faucet" -version = "0.1.10" +version = "0.1.11" dependencies = [ "blsttc", "clap 4.4.7", @@ -4638,7 +4638,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.10.0" +version = "0.10.1" dependencies = [ "async-trait", "blsttc", @@ -4667,7 +4667,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.98.0" +version = "0.98.1" dependencies = [ "assert_fs", "async-trait", @@ -4720,7 +4720,7 @@ dependencies = [ [[package]] name = "sn_node_rpc_client" -version = "0.1.10" +version = "0.1.11" dependencies = [ "assert_fs", "blsttc", @@ -4756,7 +4756,7 @@ dependencies = [ [[package]] name = "sn_protocol" -version = "0.8.20" +version = "0.8.21" dependencies = [ "blsttc", "bytes", @@ -4798,7 +4798,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.2.272" +version = "0.2.273" dependencies = [ "assert_fs", "clap 3.2.25", @@ -4822,7 +4822,7 @@ dependencies = [ [[package]] name = "sn_transfers" -version = "0.14.13" +version = "0.14.14" dependencies = [ "assert_fs", "bincode", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 0bd9a25dbd..b5c31c0ef1 100644 --- a/sn_cli/CHANGELOG.md +++ b/sn_cli/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.85.10](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.85.9...sn_cli-v0.85.10) - 2023-11-10 + +### Added +- *(cli)* attempt to reload wallet from disk if storing it fails when receiving transfers online +- *(cli)* new cmd to listen to royalties payments and deposit them into a local wallet + +### Other +- *(cli)* minor improvement to help docs + ## [0.85.9](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.85.8...sn_cli-v0.85.9) - 2023-11-10 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 168cdd5b4f..743d5c24c8 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.85.9" +version = "0.85.10" [[bin]] path="src/main.rs" @@ -40,11 +40,11 @@ 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.97.0" } -sn_transfers = { path = "../sn_transfers", version = "0.14.13" } +sn_client = { path = "../sn_client", version = "0.97.1" } +sn_transfers = { path = "../sn_transfers", version = "0.14.14" } sn_logging = { path = "../sn_logging", version = "0.2.14" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.9" } -sn_protocol = { path = "../sn_protocol", version = "0.8.20" } +sn_protocol = { path = "../sn_protocol", version = "0.8.21" } tempfile = "3.6.0" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } tracing = { version = "~0.1.26" } diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 1681676219..d5640d3d07 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.97.1](https://github.com/maidsafe/safe_network/compare/sn_client-v0.97.0...sn_client-v0.97.1) - 2023-11-10 + +### Other +- updated the following local packages: sn_transfers + ## [0.97.0](https://github.com/maidsafe/safe_network/compare/sn_client-v0.96.6...sn_client-v0.97.0) - 2023-11-10 ### Added diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index 74c3d8d42f..7e81469347 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.97.0" +version = "0.97.1" [features] default=[] @@ -31,10 +31,10 @@ 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.0" } -sn_protocol = { path = "../sn_protocol", version = "0.8.20" } +sn_networking = { path = "../sn_networking", version = "0.10.1" } +sn_protocol = { path = "../sn_protocol", version = "0.8.21" } sn_registers = { path = "../sn_registers", version = "0.3.3" } -sn_transfers = { path = "../sn_transfers", version = "0.14.13" } +sn_transfers = { path = "../sn_transfers", version = "0.14.14" } tempfile = "3.6.0" thiserror = "1.0.23" tiny-keccak = "~2.0.2" diff --git a/sn_faucet/CHANGELOG.md b/sn_faucet/CHANGELOG.md index c68fc31e49..5cf8aface1 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.11](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.1.10...sn_faucet-v0.1.11) - 2023-11-10 + +### Other +- update dependencies + ## [0.1.10](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.1.9...sn_faucet-v0.1.10) - 2023-11-10 ### Other diff --git a/sn_faucet/Cargo.toml b/sn_faucet/Cargo.toml index cbd0cfdbe8..f043bfe0cb 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.10" +version = "0.1.11" [[bin]] path="src/main.rs" @@ -19,10 +19,10 @@ 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.97.0" } +sn_client = { path = "../sn_client", version = "0.97.1" } sn_logging = { path = "../sn_logging", version = "0.2.14" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.1.8" } -sn_transfers = { path = "../sn_transfers", version = "0.14.13" } +sn_transfers = { path = "../sn_transfers", version = "0.14.14" } tiny_http = { version="0.12", features = ["ssl-rustls"] } tokio = { version = "1.32.0", features = ["parking_lot", "rt"] } tracing = { version = "~0.1.26" } diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index 5349931a8a..4e3d184768 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.1](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.10.0...sn_networking-v0.10.1) - 2023-11-10 + +### Other +- updated the following local packages: sn_transfers + ## [0.10.0](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.9.32...sn_networking-v0.10.0) - 2023-11-10 ### Added diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index 21c0b67095..4d9cc618a1 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.0" +version = "0.10.1" [features] default=[] @@ -28,8 +28,8 @@ prometheus-client = { version = "0.22", 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.8.20" } -sn_transfers = { path = "../sn_transfers", version = "0.14.13" } +sn_protocol = { path = "../sn_protocol", version = "0.8.21" } +sn_transfers = { path = "../sn_transfers", version = "0.14.14" } sysinfo = { version = "0.29.0", default-features = false, optional = true } thiserror = "1.0.23" tiny-keccak = { version = "~2.0.2", features = [ "sha3" ] } diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index d792821597..aaa8fbe9fc 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -2112,6 +2112,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - *(networking)* sort records by closeness - *(tests)* make gossipsub verification more strict wrt number of msgs received +## [0.98.1](https://github.com/maidsafe/safe_network/compare/sn_node-v0.98.0...sn_node-v0.98.1) - 2023-11-10 + +### Other +- update dependencies + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 41b3a9f063..845b3ab08a 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.0" +version = "0.98.1" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -52,12 +52,12 @@ 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.9" } -sn_client = { path = "../sn_client", version = "0.97.0" } +sn_client = { path = "../sn_client", version = "0.97.1" } sn_logging = { path = "../sn_logging", version = "0.2.14" } -sn_networking = { path = "../sn_networking", version = "0.10.0" } -sn_protocol = { path = "../sn_protocol", version = "0.8.20" } +sn_networking = { path = "../sn_networking", version = "0.10.1" } +sn_protocol = { path = "../sn_protocol", version = "0.8.21" } sn_registers = { path = "../sn_registers", version = "0.3.3" } -sn_transfers = { path = "../sn_transfers", version = "0.14.13" } +sn_transfers = { path = "../sn_transfers", version = "0.14.14" } 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_node_rpc_client/CHANGELOG.md b/sn_node_rpc_client/CHANGELOG.md index be413ab7e1..7f30dee25b 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.11](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.1.10...sn_node_rpc_client-v0.1.11) - 2023-11-10 + +### Other +- update dependencies + ## [0.1.10](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.1.9...sn_node_rpc_client-v0.1.10) - 2023-11-10 ### Other diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index e0b0cc0d25..d2f3881a84 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.10" +version = "0.1.11" [[bin]] path="src/main.rs" @@ -21,12 +21,12 @@ 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.97.0" } +sn_client = { path = "../sn_client", version = "0.97.1" } sn_logging = { path = "../sn_logging", version = "0.2.14" } -sn_node = { path = "../sn_node", version = "0.98.0" } +sn_node = { path = "../sn_node", version = "0.98.1" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.1.8" } -sn_protocol = { path = "../sn_protocol", version = "0.8.20" } -sn_transfers = { path = "../sn_transfers", version = "0.14.13" } +sn_protocol = { path = "../sn_protocol", version = "0.8.21" } +sn_transfers = { path = "../sn_transfers", version = "0.14.14" } # # watch out updating this, protoc compiler needs to be installed on all build systems # # arm builds + musl are very problematic tonic = { version = "0.6.2" } diff --git a/sn_protocol/CHANGELOG.md b/sn_protocol/CHANGELOG.md index 3698982157..a39727d783 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.8.21](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.8.20...sn_protocol-v0.8.21) - 2023-11-10 + +### Other +- updated the following local packages: sn_transfers + ## [0.8.20](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.8.19...sn_protocol-v0.8.20) - 2023-11-10 ### Other diff --git a/sn_protocol/Cargo.toml b/sn_protocol/Cargo.toml index 37b1bcf02c..55c7605f31 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.8.20" +version = "0.8.21" [dependencies] bls = { package = "blsttc", version = "8.0.1" } @@ -20,7 +20,7 @@ libp2p = { version="0.53" , features = ["identify", "kad"] } rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive", "rc" ]} sha2 = "0.10.7" -sn_transfers = { path = "../sn_transfers", version = "0.14.13" } +sn_transfers = { path = "../sn_transfers", version = "0.14.14" } sn_registers = { path = "../sn_registers", version = "0.3.3" } thiserror = "1.0.23" tracing = { version = "~0.1.26" } diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index 47c869db6c..96da90b36f 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -1885,6 +1885,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.2.273](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.2.272...sn_testnet-v0.2.273) - 2023-11-10 + +### Other +- update dependencies + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index 1a0f4f4754..3983ce0ddd 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.272" +version = "0.2.273" [features] # required to pass on flag to node builds diff --git a/sn_transfers/CHANGELOG.md b/sn_transfers/CHANGELOG.md index 0c1a2408f8..fa2a59023a 100644 --- a/sn_transfers/CHANGELOG.md +++ b/sn_transfers/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.14](https://github.com/maidsafe/safe_network/compare/sn_transfers-v0.14.13...sn_transfers-v0.14.14) - 2023-11-10 + +### Added +- *(cli)* attempt to reload wallet from disk if storing it fails when receiving transfers online +- *(cli)* new cmd to listen to royalties payments and deposit them into a local wallet + ## [0.14.13](https://github.com/maidsafe/safe_network/compare/sn_transfers-v0.14.12...sn_transfers-v0.14.13) - 2023-11-10 ### Other diff --git a/sn_transfers/Cargo.toml b/sn_transfers/Cargo.toml index 5488228636..6f6c491ab0 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.14.13" +version = "0.14.14" [dependencies] bincode = "1.3.3"