diff --git a/Cargo.lock b/Cargo.lock index dca8101e96..1d0564d0cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4489,7 +4489,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.86.49" +version = "0.86.50" dependencies = [ "blsttc", "bytes", @@ -4557,7 +4557,7 @@ dependencies = [ [[package]] name = "sn_faucet" -version = "0.1.71" +version = "0.1.72" dependencies = [ "blsttc", "clap 4.4.10", @@ -4628,7 +4628,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.99.13" +version = "0.99.14" dependencies = [ "assert_fs", "async-trait", @@ -4680,7 +4680,7 @@ dependencies = [ [[package]] name = "sn_node_rpc_client" -version = "0.1.67" +version = "0.1.68" dependencies = [ "assert_fs", "async-trait", @@ -4706,7 +4706,7 @@ dependencies = [ [[package]] name = "sn_peers_acquisition" -version = "0.1.12" +version = "0.1.13" dependencies = [ "clap 4.4.10", "color-eyre", @@ -4764,7 +4764,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.2.329" +version = "0.2.330" dependencies = [ "assert_fs", "clap 3.2.25", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 53ce1210a2..ab8e9c21b9 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.86.50](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.86.49...sn_cli-v0.86.50) - 2023-12-08 + +### Other +- update dependencies + ## [0.86.49](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.86.48...sn_cli-v0.86.49) - 2023-12-08 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 6c3bbbd9bf..03680ba541 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.86.49" +version = "0.86.50" [[bin]] path="src/main.rs" @@ -43,7 +43,7 @@ sn_build_info = { path="../sn_build_info", version = "0.1.3" } sn_client = { path = "../sn_client", version = "0.99.10" } sn_transfers = { path = "../sn_transfers", version = "0.14.27" } sn_logging = { path = "../sn_logging", version = "0.2.16" } -sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.12" } +sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.13" } sn_protocol = { path = "../sn_protocol", version = "0.8.39" } tempfile = "3.6.0" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time", "fs"] } diff --git a/sn_faucet/CHANGELOG.md b/sn_faucet/CHANGELOG.md index 7b260ecdc4..53baf628b0 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.72](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.1.71...sn_faucet-v0.1.72) - 2023-12-08 + +### Other +- update dependencies + ## [0.1.71](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.1.70...sn_faucet-v0.1.71) - 2023-12-08 ### Other diff --git a/sn_faucet/Cargo.toml b/sn_faucet/Cargo.toml index 0771ff1a6d..630e082e89 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.71" +version = "0.1.72" [features] # required to pass on flag to node builds @@ -25,7 +25,7 @@ color-eyre = "0.6.2" dirs-next = "~2.0.0" sn_client = { path = "../sn_client", version = "0.99.10" } sn_logging = { path = "../sn_logging", version = "0.2.16" } -sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.1.12" } +sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.1.13" } sn_transfers = { path = "../sn_transfers", version = "0.14.27" } tiny_http = { version="0.12", features = ["ssl-rustls"] } tokio = { version = "1.32.0", features = ["parking_lot", "rt"] } diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index a421479abf..8a21427aee 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -2466,6 +2466,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.99.14](https://github.com/maidsafe/safe_network/compare/sn_node-v0.99.13...sn_node-v0.99.14) - 2023-12-08 + +### Other +- increase wait time for royalty transfers +- update reward test awaits + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index fbf40500af..560299944f 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.99.13" +version = "0.99.14" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -50,7 +50,7 @@ rayon = "1.8.0" self_encryption = "~0.28.5" serde = { version = "1.0.133", features = [ "derive", "rc" ]} sn_build_info = { path="../sn_build_info", version = "0.1.3" } -sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.12" } +sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.13" } sn_client = { path = "../sn_client", version = "0.99.10" } sn_logging = { path = "../sn_logging", version = "0.2.16" } sn_networking = { path = "../sn_networking", version = "0.11.9" } diff --git a/sn_node_rpc_client/CHANGELOG.md b/sn_node_rpc_client/CHANGELOG.md index 31b89cb46b..8dbe4e7355 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.68](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.1.67...sn_node_rpc_client-v0.1.68) - 2023-12-08 + +### Other +- update dependencies + ## [0.1.67](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.1.66...sn_node_rpc_client-v0.1.67) - 2023-12-08 ### Other diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index f569a5d018..5d9ae1cd7f 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.67" +version = "0.1.68" [[bin]] path="src/main.rs" @@ -25,8 +25,8 @@ libp2p = { version="0.52", features = ["kad"]} libp2p-identity = { version="0.2.7", features = ["rand"] } sn_client = { path = "../sn_client", version = "0.99.10" } sn_logging = { path = "../sn_logging", version = "0.2.16" } -sn_node = { path = "../sn_node", version = "0.99.13" } -sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.1.12" } +sn_node = { path = "../sn_node", version = "0.99.14" } +sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.1.13" } sn_protocol = { path = "../sn_protocol", version = "0.8.39" } sn_transfers = { path = "../sn_transfers", version = "0.14.27" } thiserror = "1.0.23" diff --git a/sn_peers_acquisition/CHANGELOG.md b/sn_peers_acquisition/CHANGELOG.md index 69fe495e52..6c26f8d9fe 100644 --- a/sn_peers_acquisition/CHANGELOG.md +++ b/sn_peers_acquisition/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.13](https://github.com/maidsafe/safe_network/compare/sn_peers_acquisition-v0.1.12...sn_peers_acquisition-v0.1.13) - 2023-12-08 + +### Fixed +- add missing clippy allow + ## [0.1.12](https://github.com/maidsafe/safe_network/compare/sn_peers_acquisition-v0.1.11...sn_peers_acquisition-v0.1.12) - 2023-12-06 ### Other diff --git a/sn_peers_acquisition/Cargo.toml b/sn_peers_acquisition/Cargo.toml index 3b19bc647c..1744a79015 100644 --- a/sn_peers_acquisition/Cargo.toml +++ b/sn_peers_acquisition/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_peers_acquisition" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.1.12" +version = "0.1.13" [features] default = [] diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index 222f621585..a2bd7d0c8b 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -2177,6 +2177,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.2.330](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.2.329...sn_testnet-v0.2.330) - 2023-12-08 + +### Other +- update dependencies + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index b10cef6121..84520bddab 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.329" +version = "0.2.330" [features] # required to pass on flag to node builds