diff --git a/Cargo.lock b/Cargo.lock index bd0707e685..93e1f0a237 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4503,7 +4503,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.86.84" +version = "0.86.85" dependencies = [ "blsttc", "bytes", @@ -4574,7 +4574,7 @@ dependencies = [ [[package]] name = "sn_faucet" -version = "0.1.106" +version = "0.1.107" dependencies = [ "blsttc", "clap 4.4.10", @@ -4646,7 +4646,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.100.30" +version = "0.100.31" dependencies = [ "assert_fs", "async-trait", @@ -4698,7 +4698,7 @@ dependencies = [ [[package]] name = "sn_node_rpc_client" -version = "0.1.102" +version = "0.1.103" dependencies = [ "assert_fs", "async-trait", @@ -4783,7 +4783,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.2.364" +version = "0.2.365" dependencies = [ "assert_fs", "clap 3.2.25", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 6aca40756b..c93e8fcca0 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.85](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.86.84...sn_cli-v0.86.85) - 2023-12-29 + +### Other +- update dependencies + ## [0.86.84](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.86.83...sn_cli-v0.86.84) - 2023-12-29 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 281382b986..222d2f37c2 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.84" +version = "0.86.85" [[bin]] path="src/main.rs" diff --git a/sn_faucet/CHANGELOG.md b/sn_faucet/CHANGELOG.md index 38af626c0e..35b1d8273d 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.107](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.1.106...sn_faucet-v0.1.107) - 2023-12-29 + +### Added +- restart faucet_server from breaking point + ## [0.1.106](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.1.105...sn_faucet-v0.1.106) - 2023-12-29 ### Other diff --git a/sn_faucet/Cargo.toml b/sn_faucet/Cargo.toml index cc05e4505f..0280ed68e5 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.106" +version = "0.1.107" [features] # required to pass on flag to node builds diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index 52b9576bb8..f6d5504d48 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -2665,6 +2665,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update churn tests to be harsher +## [0.100.31](https://github.com/maidsafe/safe_network/compare/sn_node-v0.100.30...sn_node-v0.100.31) - 2023-12-29 + +### Other +- update dependencies + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index b6ec0a3c24..60e69278f3 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.100.30" +version = "0.100.31" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" diff --git a/sn_node_rpc_client/CHANGELOG.md b/sn_node_rpc_client/CHANGELOG.md index ceb8a3c120..5724af7821 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.103](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.1.102...sn_node_rpc_client-v0.1.103) - 2023-12-29 + +### Other +- update dependencies + ## [0.1.102](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.1.101...sn_node_rpc_client-v0.1.102) - 2023-12-29 ### Other diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index 5f4343f36b..5f7f4653b4 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.102" +version = "0.1.103" [[bin]] path="src/main.rs" @@ -25,7 +25,7 @@ libp2p = { version="0.52", features = ["kad"]} libp2p-identity = { version="0.2.7", features = ["rand"] } sn_client = { path = "../sn_client", version = "0.99.33" } sn_logging = { path = "../sn_logging", version = "0.2.16" } -sn_node = { path = "../sn_node", version = "0.100.30" } +sn_node = { path = "../sn_node", version = "0.100.31" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.1.13" } sn_protocol = { path = "../sn_protocol", version = "0.10.0" } sn_transfers = { path = "../sn_transfers", version = "0.14.31" } diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index 05d4a235f2..a45f619ae9 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -2352,6 +2352,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.2.365](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.2.364...sn_testnet-v0.2.365) - 2023-12-29 + +### Other +- update dependencies + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index 3ddc0d38e4..659668ec06 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.364" +version = "0.2.365" [features] # required to pass on flag to node builds