diff --git a/Cargo.lock b/Cargo.lock index 81ab51c4d6..bf41790c44 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4869,7 +4869,7 @@ checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" [[package]] name = "sn-node-manager" -version = "0.1.59" +version = "0.1.60" dependencies = [ "assert_cmd", "assert_fs", @@ -5095,7 +5095,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.104.13" +version = "0.104.14" dependencies = [ "assert_fs", "async-trait", @@ -5147,7 +5147,7 @@ dependencies = [ [[package]] name = "sn_node_rpc_client" -version = "0.4.46" +version = "0.4.47" dependencies = [ "assert_fs", "async-trait", diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index 72aaf19314..2ac4eb0fb9 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -5,6 +5,12 @@ 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.14](https://github.com/maidsafe/safe_network/compare/sn_node-v0.104.13...sn_node-v0.104.14) - 2024-02-12 + +### Other +- *(node)* feature guard royalty_reward publish +- *(node)* feature guard forwarder_subscription + ## [0.104.13](https://github.com/maidsafe/safe_network/compare/sn_node-v0.104.12...sn_node-v0.104.13) - 2024-02-12 ### Other diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 6eb9df89e0..0ff8f8b9ce 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.13" +version = "0.104.14" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" diff --git a/sn_node_manager/CHANGELOG.md b/sn_node_manager/CHANGELOG.md index 2bc7e2d8ca..fa6e8b524e 100644 --- a/sn_node_manager/CHANGELOG.md +++ b/sn_node_manager/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.60](https://github.com/maidsafe/safe_network/compare/sn-node-manager-v0.1.59...sn-node-manager-v0.1.60) - 2024-02-12 + +### Other +- update Cargo.lock dependencies + ## [0.1.59](https://github.com/maidsafe/safe_network/compare/sn-node-manager-v0.1.58...sn-node-manager-v0.1.59) - 2024-02-12 ### Other diff --git a/sn_node_manager/Cargo.toml b/sn_node_manager/Cargo.toml index 2b45021e2b..52a83f8c94 100644 --- a/sn_node_manager/Cargo.toml +++ b/sn_node_manager/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "sn-node-manager" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.1.59" +version = "0.1.60" [[bin]] path="src/main.rs" @@ -37,7 +37,7 @@ semver = "1.0.20" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" service-manager = "0.5.1" -sn_node_rpc_client = { path = "../sn_node_rpc_client", version = "0.4.46" } +sn_node_rpc_client = { path = "../sn_node_rpc_client", version = "0.4.47" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.6" } sn_protocol = { path = "../sn_protocol", version = "0.12.6" } sn-releases = "0.1.7" diff --git a/sn_node_rpc_client/CHANGELOG.md b/sn_node_rpc_client/CHANGELOG.md index aeb3e8b5c9..2ad2dafe94 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.4.47](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.4.46...sn_node_rpc_client-v0.4.47) - 2024-02-12 + +### Other +- *(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 + ## [0.4.46](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.4.45...sn_node_rpc_client-v0.4.46) - 2024-02-12 ### Other diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index 452ee71adc..9005333b59 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.4.46" +version = "0.4.47" [[bin]] path="src/main.rs" @@ -25,7 +25,7 @@ libp2p = { version="0.53", features = ["kad"]} libp2p-identity = { version="0.2.7", features = ["rand"] } 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.13" } +sn_node = { path = "../sn_node", version = "0.104.14" } 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" }