diff --git a/Cargo.lock b/Cargo.lock index db6d80687c..d9d8ee80c7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4328,7 +4328,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.95.10" +version = "0.95.11" dependencies = [ "async-trait", "bincode", @@ -4384,7 +4384,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.9.9" +version = "0.9.10" dependencies = [ "async-trait", "blsttc", @@ -4482,7 +4482,7 @@ dependencies = [ [[package]] name = "sn_protocol" -version = "0.8.6" +version = "0.8.7" dependencies = [ "blsttc", "bytes", @@ -4544,7 +4544,7 @@ dependencies = [ [[package]] name = "sn_transfers" -version = "0.14.7" +version = "0.14.8" dependencies = [ "assert_fs", "bincode", diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 2ca46e150b..02d40dd22f 100644 --- a/sn_cli/Cargo.toml +++ b/sn_cli/Cargo.toml @@ -40,11 +40,11 @@ libp2p = { version="0.52", features = ["identify", "kad"] } rayon = "1.8.0" 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.95.10" } -sn_transfers = { path = "../sn_transfers", version = "0.14.7" } +sn_client = { path = "../sn_client", version = "0.95.11" } +sn_transfers = { path = "../sn_transfers", version = "0.14.8" } sn_logging = { path = "../sn_logging", version = "0.2.14" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.8" } -sn_protocol = { path = "../sn_protocol", version = "0.8.6" } +sn_protocol = { path = "../sn_protocol", version = "0.8.7" } tempfile = "3.6.0" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } tracing = { version = "~0.1.26" } diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 07e75e8d4c..e9c6fca0dd 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.95.11](https://github.com/maidsafe/safe_network/compare/sn_client-v0.95.10...sn_client-v0.95.11) - 2023-10-27 + +### Added +- *(rpc-client)* be able to decrpyt received Transfers by providing a secret key + ## [0.95.10](https://github.com/maidsafe/safe_network/compare/sn_client-v0.95.9...sn_client-v0.95.10) - 2023-10-27 ### Other diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index 314bfdb373..0bf8e88896 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.95.10" +version = "0.95.11" [features] default=[] @@ -31,10 +31,10 @@ rand = { version = "~0.8.5", features = ["small_rng"] } rayon = "1.8.0" self_encryption = "~0.28.5" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_networking = { path = "../sn_networking", version = "0.9.9" } -sn_protocol = { path = "../sn_protocol", version = "0.8.6" } +sn_networking = { path = "../sn_networking", version = "0.9.10" } +sn_protocol = { path = "../sn_protocol", version = "0.8.7" } sn_registers = { path = "../sn_registers", version = "0.3.3" } -sn_transfers = { path = "../sn_transfers", version = "0.14.7" } +sn_transfers = { path = "../sn_transfers", version = "0.14.8" } tempfile = "3.6.0" thiserror = "1.0.23" tiny-keccak = "~2.0.2" diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index d69e9f527f..8d7388dc29 100644 --- a/sn_networking/CHANGELOG.md +++ b/sn_networking/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.10](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.9.9...sn_networking-v0.9.10) - 2023-10-27 + +### Other +- updated the following local packages: sn_protocol, sn_transfers + ## [0.9.9](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.9.8...sn_networking-v0.9.9) - 2023-10-27 ### Added diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index b10001f3a7..dd2d7fcb82 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.9.9" +version = "0.9.10" [features] default=[] @@ -30,8 +30,8 @@ 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.8.6" } -sn_transfers = { path = "../sn_transfers", version = "0.14.7" } +sn_protocol = { path = "../sn_protocol", version = "0.8.7" } +sn_transfers = { path = "../sn_transfers", version = "0.14.8" } sysinfo = { version = "0.29.0", default-features = false, optional = true } thiserror = "1.0.23" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 32837d4155..01ac38e4c9 100644 --- a/sn_node/Cargo.toml +++ b/sn_node/Cargo.toml @@ -60,12 +60,12 @@ self_encryption = "~0.28.5" 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.8" } -sn_client = { path = "../sn_client", version = "0.95.10" } +sn_client = { path = "../sn_client", version = "0.95.11" } sn_logging = { path = "../sn_logging", version = "0.2.14" } -sn_networking = { path = "../sn_networking", version = "0.9.9" } -sn_protocol = { path = "../sn_protocol", version = "0.8.6" } +sn_networking = { path = "../sn_networking", version = "0.9.10" } +sn_protocol = { path = "../sn_protocol", version = "0.8.7" } sn_registers = { path = "../sn_registers", version = "0.3.3" } -sn_transfers = { path = "../sn_transfers", version = "0.14.7" } +sn_transfers = { path = "../sn_transfers", version = "0.14.8" } thiserror = "1.0.23" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } tokio-stream = { version = "~0.1.12" } diff --git a/sn_protocol/CHANGELOG.md b/sn_protocol/CHANGELOG.md index de488357d8..c398e81cdb 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.8.7](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.8.6...sn_protocol-v0.8.7) - 2023-10-27 + +### Added +- encrypt network royalty to Transfer for gossip msg + ## [0.8.6](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.8.5...sn_protocol-v0.8.6) - 2023-10-26 ### Added diff --git a/sn_protocol/Cargo.toml b/sn_protocol/Cargo.toml index 790971172c..25b7c1d884 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.8.6" +version = "0.8.7" [dependencies] bls = { package = "blsttc", version = "8.0.1" } @@ -19,7 +19,7 @@ libp2p = { version="0.52", features = ["identify", "kad"] } rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive", "rc" ]} sha2 = "0.10.7" -sn_transfers = { path = "../sn_transfers", version = "0.14.7" } +sn_transfers = { path = "../sn_transfers", version = "0.14.8" } sn_registers = { path = "../sn_registers", version = "0.3.3" } thiserror = "1.0.23" tracing = { version = "~0.1.26" } diff --git a/sn_transfers/CHANGELOG.md b/sn_transfers/CHANGELOG.md index c973ccaa23..c1ea27bc00 100644 --- a/sn_transfers/CHANGELOG.md +++ b/sn_transfers/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.8](https://github.com/maidsafe/safe_network/compare/sn_transfers-v0.14.7...sn_transfers-v0.14.8) - 2023-10-27 + +### Added +- *(rpc_client)* show total accumulated balance when decrypting transfers received + ## [0.14.7](https://github.com/maidsafe/safe_network/compare/sn_transfers-v0.14.6...sn_transfers-v0.14.7) - 2023-10-26 ### Fixed diff --git a/sn_transfers/Cargo.toml b/sn_transfers/Cargo.toml index ae4cd743d0..391081686b 100644 --- a/sn_transfers/Cargo.toml +++ b/sn_transfers/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_transfers" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.14.7" +version = "0.14.8" [dependencies] bincode = "1.3.3"