diff --git a/Cargo.lock b/Cargo.lock index 68d145ee4e..6106bfdacf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4270,7 +4270,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.82.0" +version = "0.82.1" dependencies = [ "bincode", "blsttc", @@ -4300,7 +4300,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.90.0" +version = "0.90.1" dependencies = [ "async-trait", "bincode", @@ -4351,7 +4351,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.7.0" +version = "0.7.1" dependencies = [ "async-trait", "blsttc", @@ -4379,7 +4379,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.90.34" +version = "0.90.35" dependencies = [ "assert_fs", "async-trait", @@ -4444,7 +4444,7 @@ dependencies = [ [[package]] name = "sn_protocol" -version = "0.7.0" +version = "0.7.1" dependencies = [ "blsttc", "bytes", @@ -4481,7 +4481,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.2.155" +version = "0.2.156" dependencies = [ "assert_fs", "clap 3.2.25", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 3e68de36ee..2655ef3745 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.82.1](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.82.0...sn_cli-v0.82.1) - 2023-09-22 + +### Added +- *(apis)* adding client and node APIs, as well as safenode RPC services to pub/sub to gossipsub topics + ## [0.82.0](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.81.64...sn_cli-v0.82.0) - 2023-09-22 ### Added diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index ee2185d3c4..2fd8235857 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.82.0" +version = "0.82.1" [[bin]] path="src/main.rs" @@ -36,11 +36,11 @@ hex = "~0.4.3" libp2p = { version="0.52", features = ["identify", "kad"] } reqwest = { version="0.11.18", default-features=false, features = ["rustls"] } sn_build_info = { path="../sn_build_info", version = "0.1.2" } -sn_client = { path = "../sn_client", version = "0.90.0" } +sn_client = { path = "../sn_client", version = "0.90.1" } sn_transfers = { path = "../sn_transfers", version = "0.12.0" } sn_logging = { path = "../sn_logging", version = "0.2.9" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.6" } -sn_protocol = { path = "../sn_protocol", version = "0.7.0" } +sn_protocol = { path = "../sn_protocol", version = "0.7.1" } tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } tracing = { version = "~0.1.26" } tracing-core = "0.1.30" diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 94a14082e9..1cfeaf4cf4 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.90.1](https://github.com/maidsafe/safe_network/compare/sn_client-v0.90.0...sn_client-v0.90.1) - 2023-09-22 + +### Added +- *(apis)* adding client and node APIs, as well as safenode RPC services to pub/sub to gossipsub topics + ## [0.90.0](https://github.com/maidsafe/safe_network/compare/sn_client-v0.89.23...sn_client-v0.90.0) - 2023-09-21 ### Added diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index f728be0f4d..f5fda4dc9e 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.90.0" +version = "0.90.1" [features] default=[] @@ -30,8 +30,8 @@ rand = { version = "~0.8.5", features = ["small_rng"] } rayon = "1.7.0" self_encryption = "~0.28.4" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_networking = { path = "../sn_networking", version = "0.7.0" } -sn_protocol = { path = "../sn_protocol", version = "0.7.0" } +sn_networking = { path = "../sn_networking", version = "0.7.1" } +sn_protocol = { path = "../sn_protocol", version = "0.7.1" } sn_registers = { path = "../sn_registers", version = "0.2.6" } sn_transfers = { path = "../sn_transfers", version = "0.12.0" } tempfile = "3.6.0" diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index f1efc0f94b..af01724d73 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.7.1](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.7.0...sn_networking-v0.7.1) - 2023-09-22 + +### Added +- *(apis)* adding client and node APIs, as well as safenode RPC services to pub/sub to gossipsub topics +- *(network)* adding support for gossipsub behaviour/messaging + ## [0.7.0](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.6.15...sn_networking-v0.7.0) - 2023-09-21 ### Added diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index 9431a78fef..cd8c7abbd0 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.7.0" +version = "0.7.1" [features] default=[] @@ -30,7 +30,7 @@ prometheus-client = { version = "0.21.2", optional = true } rand = { version = "~0.8.5", features = ["small_rng"] } rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_protocol = { path = "../sn_protocol", version = "0.7.0" } +sn_protocol = { path = "../sn_protocol", version = "0.7.1" } sn_transfers = { path = "../sn_transfers", version = "0.12.0" } thiserror = "1.0.23" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index 0277187561..6a3129f8fd 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -1379,6 +1379,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.90.35](https://github.com/maidsafe/safe_network/compare/sn_node-v0.90.34...sn_node-v0.90.35) - 2023-09-22 + +### Added +- *(apis)* adding client and node APIs, as well as safenode RPC services to pub/sub to gossipsub topics +- *(network)* adding support for gossipsub behaviour/messaging + +### Other +- *(gossipsub)* CI testing with nodes subscribing to gossipsub topics and publishing messages + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 0d85b7cdb2..438c681f2c 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.90.34" +version = "0.90.35" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -54,10 +54,10 @@ self_encryption = "~0.28.4" serde = { version = "1.0.133", features = [ "derive", "rc" ]} sn_build_info = { path="../sn_build_info", version = "0.1.2" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.6" } -sn_client = { path = "../sn_client", version = "0.90.0" } +sn_client = { path = "../sn_client", version = "0.90.1" } sn_logging = { path = "../sn_logging", version = "0.2.9" } -sn_networking = { path = "../sn_networking", version = "0.7.0" } -sn_protocol = { path = "../sn_protocol", version = "0.7.0" } +sn_networking = { path = "../sn_networking", version = "0.7.1" } +sn_protocol = { path = "../sn_protocol", version = "0.7.1" } sn_registers = { path = "../sn_registers", version = "0.2.6" } sn_transfers = { path = "../sn_transfers", version = "0.12.0" } thiserror = "1.0.23" diff --git a/sn_protocol/CHANGELOG.md b/sn_protocol/CHANGELOG.md index 541b395d35..6b3ce3c571 100644 --- a/sn_protocol/CHANGELOG.md +++ b/sn_protocol/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.1](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.7.0...sn_protocol-v0.7.1) - 2023-09-22 + +### Other +- *(gossipsub)* CI testing with nodes subscribing to gossipsub topics and publishing messages + ## [0.7.0](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.6.10...sn_protocol-v0.7.0) - 2023-09-21 ### Added diff --git a/sn_protocol/Cargo.toml b/sn_protocol/Cargo.toml index 57952a1e28..0aeedb32e2 100644 --- a/sn_protocol/Cargo.toml +++ b/sn_protocol/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "sn_protocol" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.7.0" +version = "0.7.1" [dependencies] bls = { package = "blsttc", version = "8.0.1" } diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index 751c297364..4f253f310d 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -1296,6 +1296,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.2.156](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.2.155...sn_testnet-v0.2.156) - 2023-09-22 + +### Other +- update dependencies + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index 608ca5ec2d..a8972444ed 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.155" +version = "0.2.156" [features] # required to pass on flag to node builds