From 07fb93a790bea3c674182f30c2c6829f9480fe0f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 12 Feb 2024 13:32:12 +0000 Subject: [PATCH] chore(release): sn_cli-v0.89.63/sn_networking-v0.13.13/sn_faucet-v0.3.63/sn_client-v0.104.8/sn_node-v0.104.13 --- Cargo.lock | 10 +++++----- sn_cli/CHANGELOG.md | 5 +++++ sn_cli/Cargo.toml | 4 ++-- sn_client/CHANGELOG.md | 5 +++++ sn_client/Cargo.toml | 4 ++-- sn_faucet/CHANGELOG.md | 6 ++++++ sn_faucet/Cargo.toml | 4 ++-- sn_networking/CHANGELOG.md | 6 ++++++ sn_networking/Cargo.toml | 2 +- sn_node/CHANGELOG.md | 5 +++++ sn_node/Cargo.toml | 6 +++--- sn_node_rpc_client/Cargo.toml | 4 ++-- 12 files changed, 44 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 542036ff69..81ab51c4d6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4927,7 +4927,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.89.62" +version = "0.89.63" dependencies = [ "blsttc", "bytes", @@ -4966,7 +4966,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.104.7" +version = "0.104.8" dependencies = [ "async-trait", "backoff", @@ -5008,7 +5008,7 @@ dependencies = [ [[package]] name = "sn_faucet" -version = "0.3.62" +version = "0.3.63" dependencies = [ "bitcoin", "blsttc", @@ -5059,7 +5059,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.13.12" +version = "0.13.13" dependencies = [ "aes-gcm-siv", "async-trait", @@ -5095,7 +5095,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.104.12" +version = "0.104.13" dependencies = [ "assert_fs", "async-trait", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 1e32d97d2c..3cbf9d7ba1 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.89.63](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.89.62...sn_cli-v0.89.63) - 2024-02-12 + +### Other +- *(release)* sn_networking-v0.13.12/sn_node-v0.104.12/sn-node-manager-v0.1.59/sn_client-v0.104.7/sn_node_rpc_client-v0.4.46 + ## [0.89.62](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.89.61...sn_cli-v0.89.62) - 2024-02-12 ### Added diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index e2006364ca..497c429d69 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.89.62" +version = "0.89.63" [[bin]] path="src/main.rs" @@ -44,7 +44,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.5" } -sn_client = { path = "../sn_client", version = "0.104.7" } +sn_client = { path = "../sn_client", version = "0.104.8" } sn_transfers = { path = "../sn_transfers", version = "0.15.3" } sn_registers = { path = "../sn_registers", version = "0.3.9" } sn_logging = { path = "../sn_logging", version = "0.2.21" } diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 8607fa9e13..6c6d5bc85f 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.104.8](https://github.com/maidsafe/safe_network/compare/sn_client-v0.104.7...sn_client-v0.104.8) - 2024-02-12 + +### Other +- updated the following local packages: sn_networking + ## [0.104.7](https://github.com/maidsafe/safe_network/compare/sn_client-v0.104.6...sn_client-v0.104.7) - 2024-02-12 ### Other diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index 033d31d7f1..d091f2b53f 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.104.7" +version = "0.104.8" [features] default=[] @@ -34,7 +34,7 @@ rayon = "1.8.0" rmp-serde = "1.1.1" self_encryption = "~0.29.0" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_networking = { path = "../sn_networking", version = "0.13.12" } +sn_networking = { path = "../sn_networking", version = "0.13.13" } sn_protocol = { path = "../sn_protocol", version = "0.12.6" } sn_registers = { path = "../sn_registers", version = "0.3.9" } sn_transfers = { path = "../sn_transfers", version = "0.15.3" } diff --git a/sn_faucet/CHANGELOG.md b/sn_faucet/CHANGELOG.md index ffa7175fb7..345e31e131 100644 --- a/sn_faucet/CHANGELOG.md +++ b/sn_faucet/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.63](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.3.62...sn_faucet-v0.3.63) - 2024-02-12 + +### Other +- *(faucet)* improve faucet server response for clippy +- *(release)* sn_networking-v0.13.12/sn_node-v0.104.12/sn-node-manager-v0.1.59/sn_client-v0.104.7/sn_node_rpc_client-v0.4.46 + ## [0.3.62](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.3.61...sn_faucet-v0.3.62) - 2024-02-12 ### Other diff --git a/sn_faucet/Cargo.toml b/sn_faucet/Cargo.toml index 9eda5ccbe6..e793a5e940 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.3.62" +version = "0.3.63" [features] default = [] @@ -32,7 +32,7 @@ rmp-serde = "1.1.2" serde = { version = "1.0.193", features = ["derive"] } serde_bytes = { version = "0.11.12", optional = true } serde_json = "1.0.108" -sn_client = { path = "../sn_client", version = "0.104.7" } +sn_client = { path = "../sn_client", version = "0.104.8" } sn_logging = { path = "../sn_logging", version = "0.2.21" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.6" } sn_transfers = { path = "../sn_transfers", version = "0.15.3" } diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index c1ba486b64..68e2439c99 100644 --- a/sn_networking/CHANGELOG.md +++ b/sn_networking/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.13](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.13.12...sn_networking-v0.13.13) - 2024-02-12 + +### Other +- *(networking)* clear all stats afgter we log them +- *(networking)* improve swarm driver stats logging + ## [0.13.12](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.13.11...sn_networking-v0.13.12) - 2024-02-12 ### Other diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index 9d799cbeb9..4d271d1247 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.13.12" +version = "0.13.13" [features] default=["libp2p/quic"] diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index 682ef773d7..72aaf19314 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.104.13](https://github.com/maidsafe/safe_network/compare/sn_node-v0.104.12...sn_node-v0.104.13) - 2024-02-12 + +### Other +- updated the following local packages: sn_networking + ## [0.104.12](https://github.com/maidsafe/safe_network/compare/sn_node-v0.104.11...sn_node-v0.104.12) - 2024-02-12 ### Other diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 1adee71cef..55b59a1545 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.104.12" +version = "0.104.13" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -51,9 +51,9 @@ self_encryption = "~0.29.0" serde = { version = "1.0.133", features = [ "derive", "rc" ]} sn_build_info = { path="../sn_build_info", version = "0.1.5" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.6" } -sn_client = { path = "../sn_client", version = "0.104.7" } +sn_client = { path = "../sn_client", version = "0.104.8" } sn_logging = { path = "../sn_logging", version = "0.2.21" } -sn_networking = { path = "../sn_networking", version = "0.13.12" } +sn_networking = { path = "../sn_networking", version = "0.13.13" } sn_protocol = { path = "../sn_protocol", version = "0.12.6", features = ["rpc"]} sn_registers = { path = "../sn_registers", version = "0.3.9" } sn_transfers = { path = "../sn_transfers", version = "0.15.3" } diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index b6060c9a7d..452ee71adc 100644 --- a/sn_node_rpc_client/Cargo.toml +++ b/sn_node_rpc_client/Cargo.toml @@ -23,9 +23,9 @@ color-eyre = "0.6.2" hex = "~0.4.3" libp2p = { version="0.53", features = ["kad"]} libp2p-identity = { version="0.2.7", features = ["rand"] } -sn_client = { path = "../sn_client", version = "0.104.7" } +sn_client = { path = "../sn_client", version = "0.104.8" } sn_logging = { path = "../sn_logging", version = "0.2.21" } -sn_node = { path = "../sn_node", version = "0.104.12" } +sn_node = { path = "../sn_node", version = "0.104.13" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.6" } sn_protocol = { path = "../sn_protocol", version = "0.12.6", features=["rpc"] } sn_transfers = { path = "../sn_transfers", version = "0.15.3" }