From 85a2f6098132a52ac43d58c6d7e4d0a283184181 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 9 Jan 2024 10:59:50 +0000 Subject: [PATCH] chore(release): sn_cli-v0.88.2/sn_client-v0.101.0/sn_faucet-v0.2.2/sn_node-v0.102.2/sn_node_rpc_client-v0.2.2/sn_testnet-v0.3.2 --- Cargo.lock | 12 ++++++------ sn_cli/CHANGELOG.md | 5 +++++ sn_cli/Cargo.toml | 4 ++-- sn_client/CHANGELOG.md | 13 +++++++++++++ sn_client/Cargo.toml | 2 +- sn_faucet/CHANGELOG.md | 5 +++++ sn_faucet/Cargo.toml | 4 ++-- sn_node/CHANGELOG.md | 5 +++++ sn_node/Cargo.toml | 4 ++-- sn_node_rpc_client/CHANGELOG.md | 5 +++++ sn_node_rpc_client/Cargo.toml | 6 +++--- sn_testnet/CHANGELOG.md | 5 +++++ sn_testnet/Cargo.toml | 2 +- 13 files changed, 55 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b74040a6f2..8c243886e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4512,7 +4512,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.88.1" +version = "0.88.2" dependencies = [ "blsttc", "bytes", @@ -4549,7 +4549,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.100.1" +version = "0.101.0" dependencies = [ "async-trait", "backoff", @@ -4584,7 +4584,7 @@ dependencies = [ [[package]] name = "sn_faucet" -version = "0.2.1" +version = "0.2.2" dependencies = [ "blsttc", "clap 4.4.10", @@ -4656,7 +4656,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.102.1" +version = "0.102.2" dependencies = [ "assert_fs", "async-trait", @@ -4708,7 +4708,7 @@ dependencies = [ [[package]] name = "sn_node_rpc_client" -version = "0.2.1" +version = "0.2.2" dependencies = [ "assert_fs", "async-trait", @@ -4793,7 +4793,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.3.1" +version = "0.3.2" dependencies = [ "assert_fs", "clap 3.2.25", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 7566f13356..2a1368cbd3 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.88.2](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.88.1...sn_cli-v0.88.2) - 2024-01-09 + +### Other +- update dependencies + ## [0.88.1](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.88.0...sn_cli-v0.88.1) - 2024-01-09 ### Added diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 960df79bc5..3eb64ef842 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.88.1" +version = "0.88.2" [[bin]] path="src/main.rs" @@ -43,7 +43,7 @@ reqwest = { version="0.11.18", default-features=false, features = ["rustls"] } rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive"]} sn_build_info = { path="../sn_build_info", version = "0.1.4" } -sn_client = { path = "../sn_client", version = "0.100.1" } +sn_client = { path = "../sn_client", version = "0.101.0" } sn_transfers = { path = "../sn_transfers", version = "0.14.34" } sn_logging = { path = "../sn_logging", version = "0.2.16" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.0" } diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 06dfb8921e..71507f3635 100644 --- a/sn_client/CHANGELOG.md +++ b/sn_client/CHANGELOG.md @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.101.0](https://github.com/maidsafe/safe_network/compare/sn_client-v0.100.1...sn_client-v0.101.0) - 2024-01-09 + +### Added +- *(client)* use buffered future stream to download chunks + +### Fixed +- *(client)* empty out the download cache once the stream exits +- *(ci)* fix clippy error due to Send not being general + +### Other +- *(client)* add docs to FilesDownload +- *(client)* [**breaking**] move read_from range into `DownloadFiles` + ## [0.100.1](https://github.com/maidsafe/safe_network/compare/sn_client-v0.100.0...sn_client-v0.100.1) - 2024-01-09 ### Other diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index 879d416dca..e6913d298c 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.100.1" +version = "0.101.0" [features] default=[] diff --git a/sn_faucet/CHANGELOG.md b/sn_faucet/CHANGELOG.md index 1858587c62..04e191fb84 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.2.2](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.2.1...sn_faucet-v0.2.2) - 2024-01-09 + +### Other +- update dependencies + ## [0.2.1](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.2.0...sn_faucet-v0.2.1) - 2024-01-09 ### Other diff --git a/sn_faucet/Cargo.toml b/sn_faucet/Cargo.toml index 2c3d4bf5be..6049b4e7e2 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.2.1" +version = "0.2.2" [features] # required to pass on flag to node builds @@ -23,7 +23,7 @@ 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.100.1" } +sn_client = { path = "../sn_client", version = "0.101.0" } sn_logging = { path = "../sn_logging", version = "0.2.16" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.0" } sn_transfers = { path = "../sn_transfers", version = "0.14.34" } diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index ebefccaa1f..34c50632ae 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -2783,6 +2783,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - *(node)* move replication cmd flow to swarm_driver - get spend from network only require Majority +## [0.102.2](https://github.com/maidsafe/safe_network/compare/sn_node-v0.102.1...sn_node-v0.102.2) - 2024-01-09 + +### Other +- update dependencies + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 648d725894..b0be0a3bc0 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.102.1" +version = "0.102.2" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -51,7 +51,7 @@ self_encryption = "~0.28.5" serde = { version = "1.0.133", features = [ "derive", "rc" ]} sn_build_info = { path="../sn_build_info", version = "0.1.4" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.0" } -sn_client = { path = "../sn_client", version = "0.100.1" } +sn_client = { path = "../sn_client", version = "0.101.0" } sn_logging = { path = "../sn_logging", version = "0.2.16" } sn_networking = { path = "../sn_networking", version = "0.12.22" } sn_protocol = { path = "../sn_protocol", version = "0.10.3" } diff --git a/sn_node_rpc_client/CHANGELOG.md b/sn_node_rpc_client/CHANGELOG.md index 43d81dacb5..4742e39b65 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.2.2](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.2.1...sn_node_rpc_client-v0.2.2) - 2024-01-09 + +### Other +- update dependencies + ## [0.2.1](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.2.0...sn_node_rpc_client-v0.2.1) - 2024-01-09 ### Other diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index f4841ead15..8a0c960814 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.2.1" +version = "0.2.2" [[bin]] path="src/main.rs" @@ -23,9 +23,9 @@ color-eyre = "0.6.2" hex = "~0.4.3" libp2p = { version="0.52", features = ["kad"]} libp2p-identity = { version="0.2.7", features = ["rand"] } -sn_client = { path = "../sn_client", version = "0.100.1" } +sn_client = { path = "../sn_client", version = "0.101.0" } sn_logging = { path = "../sn_logging", version = "0.2.16" } -sn_node = { path = "../sn_node", version = "0.102.1" } +sn_node = { path = "../sn_node", version = "0.102.2" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.0" } sn_protocol = { path = "../sn_protocol", version = "0.10.3" } sn_transfers = { path = "../sn_transfers", version = "0.14.34" } diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index d6dd0ff653..2e7fcd56f2 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -2457,6 +2457,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.3.2](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.3.1...sn_testnet-v0.3.2) - 2024-01-09 + +### Other +- update dependencies + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index 849762a436..a99af0bec2 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.3.1" +version = "0.3.2" [features] # required to pass on flag to node builds