From 07b2e1d120df6c9e0b1d33bf67255d1d31a364d2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 7 Feb 2024 15:30:13 +0000 Subject: [PATCH] chore(release): sn_cli-v0.89.50/sn_client-v0.103.7/sn_transfers-v0.15.2/sn_faucet-v0.3.49/sn_node-v0.103.46/sn_node_rpc_client-v0.4.34/sn-node-manager-v0.1.50/token_supplies-v0.1.35/sn_networking-v0.13.6/sn_protocol-v0.12.4 --- Cargo.lock | 20 ++++++++++---------- sn_cli/CHANGELOG.md | 5 +++++ sn_cli/Cargo.toml | 10 +++++----- sn_client/CHANGELOG.md | 5 +++++ sn_client/Cargo.toml | 8 ++++---- sn_faucet/CHANGELOG.md | 5 +++++ sn_faucet/Cargo.toml | 6 +++--- sn_networking/CHANGELOG.md | 5 +++++ sn_networking/Cargo.toml | 6 +++--- sn_node/CHANGELOG.md | 5 +++++ sn_node/Cargo.toml | 12 ++++++------ sn_node_manager/CHANGELOG.md | 5 +++++ sn_node_manager/Cargo.toml | 6 +++--- sn_node_rpc_client/CHANGELOG.md | 5 +++++ sn_node_rpc_client/Cargo.toml | 10 +++++----- sn_protocol/CHANGELOG.md | 5 +++++ sn_protocol/Cargo.toml | 4 ++-- sn_transfers/CHANGELOG.md | 5 +++++ sn_transfers/Cargo.toml | 2 +- token_supplies/CHANGELOG.md | 5 +++++ token_supplies/Cargo.toml | 2 +- 21 files changed, 93 insertions(+), 43 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1b9661f058..80c88322c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4917,7 +4917,7 @@ checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" [[package]] name = "sn-node-manager" -version = "0.1.49" +version = "0.1.50" dependencies = [ "assert_cmd", "assert_fs", @@ -4975,7 +4975,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.89.49" +version = "0.89.50" dependencies = [ "blsttc", "bytes", @@ -5014,7 +5014,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.103.6" +version = "0.103.7" dependencies = [ "async-trait", "backoff", @@ -5056,7 +5056,7 @@ dependencies = [ [[package]] name = "sn_faucet" -version = "0.3.48" +version = "0.3.49" dependencies = [ "bitcoin", "blsttc", @@ -5106,7 +5106,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.13.5" +version = "0.13.6" dependencies = [ "aes-gcm-siv", "async-trait", @@ -5142,7 +5142,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.103.45" +version = "0.103.46" dependencies = [ "assert_fs", "async-trait", @@ -5194,7 +5194,7 @@ dependencies = [ [[package]] name = "sn_node_rpc_client" -version = "0.4.33" +version = "0.4.34" dependencies = [ "assert_fs", "async-trait", @@ -5234,7 +5234,7 @@ dependencies = [ [[package]] name = "sn_protocol" -version = "0.12.3" +version = "0.12.4" dependencies = [ "blsttc", "bytes", @@ -5278,7 +5278,7 @@ dependencies = [ [[package]] name = "sn_transfers" -version = "0.15.1" +version = "0.15.2" dependencies = [ "assert_fs", "blsttc", @@ -5680,7 +5680,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "token_supplies" -version = "0.1.34" +version = "0.1.35" dependencies = [ "dirs-next", "reqwest", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index e77ce65f9a..c8014df4cc 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.89.50](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.89.49...sn_cli-v0.89.50) - 2024-02-07 + +### Added +- extendable local state DAG in cli + ## [0.89.49](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.89.48...sn_cli-v0.89.49) - 2024-02-06 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 634656d904..9bdd4b92e3 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.89.49" +version = "0.89.50" [[bin]] path="src/main.rs" @@ -44,12 +44,12 @@ reqwest = { version="0.11.18", default-features=false, features = ["rustls"] } rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive"]} sn_build_info = { path="../sn_build_info", version = "0.1.4" } -sn_client = { path = "../sn_client", version = "0.103.6" } -sn_transfers = { path = "../sn_transfers", version = "0.15.1" } +sn_client = { path = "../sn_client", version = "0.103.7" } +sn_transfers = { path = "../sn_transfers", version = "0.15.2" } sn_registers = { path = "../sn_registers", version = "0.3.8" } sn_logging = { path = "../sn_logging", version = "0.2.19" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.5" } -sn_protocol = { path = "../sn_protocol", version = "0.12.3" } +sn_protocol = { path = "../sn_protocol", version = "0.12.4" } tempfile = "3.6.0" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time", "fs"] } tracing = { version = "~0.1.26" } @@ -63,7 +63,7 @@ eyre = "0.6.8" criterion = "0.5.1" tempfile = "3.6.0" rand = { version = "~0.8.5", features = ["small_rng"] } -sn_protocol = { path = "../sn_protocol", version = "0.12.3", features = ["test-utils"]} +sn_protocol = { path = "../sn_protocol", version = "0.12.4", features = ["test-utils"]} [lints] workspace = true diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 1379a5156a..b0f155cd36 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.103.7](https://github.com/maidsafe/safe_network/compare/sn_client-v0.103.6...sn_client-v0.103.7) - 2024-02-07 + +### Added +- extendable local state DAG in cli + ## [0.103.6](https://github.com/maidsafe/safe_network/compare/sn_client-v0.103.5...sn_client-v0.103.6) - 2024-02-06 ### Other diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index 828dfd63bc..0d54a55d63 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.103.6" +version = "0.103.7" [features] default=[] @@ -34,10 +34,10 @@ rayon = "1.8.0" rmp-serde = "1.1.1" self_encryption = "~0.29.0" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_networking = { path = "../sn_networking", version = "0.13.5" } -sn_protocol = { path = "../sn_protocol", version = "0.12.3" } +sn_networking = { path = "../sn_networking", version = "0.13.6" } +sn_protocol = { path = "../sn_protocol", version = "0.12.4" } sn_registers = { path = "../sn_registers", version = "0.3.8" } -sn_transfers = { path = "../sn_transfers", version = "0.15.1" } +sn_transfers = { path = "../sn_transfers", version = "0.15.2" } tempfile = "3.6.0" thiserror = "1.0.23" tiny-keccak = "~2.0.2" diff --git a/sn_faucet/CHANGELOG.md b/sn_faucet/CHANGELOG.md index 9e2ff59c4a..d1d3e448d0 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.3.49](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.3.48...sn_faucet-v0.3.49) - 2024-02-07 + +### Other +- update dependencies + ## [0.3.48](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.3.47...sn_faucet-v0.3.48) - 2024-02-06 ### Other diff --git a/sn_faucet/Cargo.toml b/sn_faucet/Cargo.toml index c725eed65a..090e9ecf74 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.3.48" +version = "0.3.49" [features] default = [] @@ -32,10 +32,10 @@ rmp-serde = "1.1.2" serde = { version = "1.0.193", features = ["derive"] } serde_bytes = { version = "0.11.12", optional = true } serde_json = "1.0.108" -sn_client = { path = "../sn_client", version = "0.103.6" } +sn_client = { path = "../sn_client", version = "0.103.7" } sn_logging = { path = "../sn_logging", version = "0.2.19" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.5" } -sn_transfers = { path = "../sn_transfers", version = "0.15.1" } +sn_transfers = { path = "../sn_transfers", version = "0.15.2" } tiny_http = { version="0.12", features = ["ssl-rustls"] } tokio = { version = "1.32.0", features = ["parking_lot", "rt"] } tracing = { version = "~0.1.26" } diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index c67e781f64..533e87d572 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.13.6](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.13.5...sn_networking-v0.13.6) - 2024-02-07 + +### Other +- updated the following local packages: sn_transfers + ## [0.13.5](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.13.4...sn_networking-v0.13.5) - 2024-02-06 ### Other diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index c4e2c891b1..0b874b842f 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.13.5" +version = "0.13.6" [features] default=["libp2p/quic"] @@ -33,8 +33,8 @@ rand = { version = "~0.8.5", features = ["small_rng"] } rayon = "1.8.0" rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_protocol = { path = "../sn_protocol", version = "0.12.3" } -sn_transfers = { path = "../sn_transfers", version = "0.15.1" } +sn_protocol = { path = "../sn_protocol", version = "0.12.4" } +sn_transfers = { path = "../sn_transfers", version = "0.15.2" } sysinfo = { version = "0.29.0", default-features = false, optional = true } thiserror = "1.0.23" tiny-keccak = { version = "~2.0.2", features = [ "sha3" ] } diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index dc16e6a9ff..4aedc31f5e 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -3132,6 +3132,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - *(node)* derive reward_key from main keypair +## [0.103.46](https://github.com/maidsafe/safe_network/compare/sn_node-v0.103.45...sn_node-v0.103.46) - 2024-02-07 + +### Other +- update dependencies + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 7e29c77ae4..a5ee2ddd87 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.103.45" +version = "0.103.46" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -51,12 +51,12 @@ self_encryption = "~0.29.0" serde = { version = "1.0.133", features = [ "derive", "rc" ]} sn_build_info = { path="../sn_build_info", version = "0.1.4" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.5" } -sn_client = { path = "../sn_client", version = "0.103.6" } +sn_client = { path = "../sn_client", version = "0.103.7" } sn_logging = { path = "../sn_logging", version = "0.2.19" } -sn_networking = { path = "../sn_networking", version = "0.13.5" } -sn_protocol = { path = "../sn_protocol", version = "0.12.3", features = ["rpc"]} +sn_networking = { path = "../sn_networking", version = "0.13.6" } +sn_protocol = { path = "../sn_protocol", version = "0.12.4", features = ["rpc"]} sn_registers = { path = "../sn_registers", version = "0.3.8" } -sn_transfers = { path = "../sn_transfers", version = "0.15.1" } +sn_transfers = { path = "../sn_transfers", version = "0.15.2" } thiserror = "1.0.23" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time", "signal"] } tokio-stream = { version = "~0.1.12" } @@ -73,7 +73,7 @@ color-eyre = "0.6.2" [dev-dependencies] tempfile = "3.6.0" reqwest = { version="0.11.18", default-features=false, features = ["rustls"] } -sn_protocol = { path = "../sn_protocol", version = "0.12.3", features = ["test-utils", "rpc"]} +sn_protocol = { path = "../sn_protocol", version = "0.12.4", features = ["test-utils", "rpc"]} [lints] workspace = true diff --git a/sn_node_manager/CHANGELOG.md b/sn_node_manager/CHANGELOG.md index ae627ba18b..7919e08637 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.50](https://github.com/maidsafe/safe_network/compare/sn-node-manager-v0.1.49...sn-node-manager-v0.1.50) - 2024-02-07 + +### Other +- update dependencies + ## [0.1.49](https://github.com/maidsafe/safe_network/compare/sn-node-manager-v0.1.48...sn-node-manager-v0.1.49) - 2024-02-06 ### Other diff --git a/sn_node_manager/Cargo.toml b/sn_node_manager/Cargo.toml index 0888fd0cec..0b7d192107 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.49" +version = "0.1.50" [[bin]] path="src/main.rs" @@ -37,9 +37,9 @@ 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.33" } +sn_node_rpc_client = { path = "../sn_node_rpc_client", version = "0.4.34" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.4" } -sn_protocol = { path = "../sn_protocol", version = "0.12.3" } +sn_protocol = { path = "../sn_protocol", version = "0.12.4" } sn-releases = "0.1.6" sysinfo = "0.29.10" tokio = { version = "1.26", features = ["full"] } diff --git a/sn_node_rpc_client/CHANGELOG.md b/sn_node_rpc_client/CHANGELOG.md index a726c3bc38..6691c32840 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.34](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.4.33...sn_node_rpc_client-v0.4.34) - 2024-02-07 + +### Other +- update dependencies + ## [0.4.33](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.4.32...sn_node_rpc_client-v0.4.33) - 2024-02-06 ### Other diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index 5930368b12..911796b739 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.33" +version = "0.4.34" [[bin]] path="src/main.rs" @@ -23,12 +23,12 @@ color-eyre = "0.6.2" hex = "~0.4.3" libp2p = { version="0.53", features = ["kad"]} libp2p-identity = { version="0.2.7", features = ["rand"] } -sn_client = { path = "../sn_client", version = "0.103.6" } +sn_client = { path = "../sn_client", version = "0.103.7" } sn_logging = { path = "../sn_logging", version = "0.2.19" } -sn_node = { path = "../sn_node", version = "0.103.45" } +sn_node = { path = "../sn_node", version = "0.103.46" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.5" } -sn_protocol = { path = "../sn_protocol", version = "0.12.3", features=["rpc"] } -sn_transfers = { path = "../sn_transfers", version = "0.15.1" } +sn_protocol = { path = "../sn_protocol", version = "0.12.4", features=["rpc"] } +sn_transfers = { path = "../sn_transfers", version = "0.15.2" } thiserror = "1.0.23" # # watch out updating this, protoc compiler needs to be installed on all build systems # # arm builds + musl are very problematic diff --git a/sn_protocol/CHANGELOG.md b/sn_protocol/CHANGELOG.md index 418121bce8..0616692a54 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.12.4](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.12.3...sn_protocol-v0.12.4) - 2024-02-07 + +### Other +- updated the following local packages: sn_transfers + ## [0.12.3](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.12.2...sn_protocol-v0.12.3) - 2024-02-06 ### Other diff --git a/sn_protocol/Cargo.toml b/sn_protocol/Cargo.toml index 369d1fae66..6a246626d5 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.12.3" +version = "0.12.4" [features] default = [] @@ -28,7 +28,7 @@ rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive", "rc" ]} serde_json = "1.0" sha2 = "0.10.7" -sn_transfers = { path = "../sn_transfers", version = "0.15.1" } +sn_transfers = { path = "../sn_transfers", version = "0.15.2" } sn_registers = { path = "../sn_registers", version = "0.3.8" } thiserror = "1.0.23" tiny-keccak = { version = "~2.0.2", features = [ "sha3" ] } diff --git a/sn_transfers/CHANGELOG.md b/sn_transfers/CHANGELOG.md index a3d00753a5..57870d8247 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.15.2](https://github.com/maidsafe/safe_network/compare/sn_transfers-v0.15.1...sn_transfers-v0.15.2) - 2024-02-07 + +### Added +- extendable local state DAG in cli + ## [0.15.1](https://github.com/maidsafe/safe_network/compare/sn_transfers-v0.15.0...sn_transfers-v0.15.1) - 2024-02-06 ### Fixed diff --git a/sn_transfers/Cargo.toml b/sn_transfers/Cargo.toml index aaa52a9655..a8946c8977 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.15.1" +version = "0.15.2" [dependencies] bls = { package = "blsttc", version = "8.0.1" } diff --git a/token_supplies/CHANGELOG.md b/token_supplies/CHANGELOG.md index 58b31d0157..1ff228e36e 100644 --- a/token_supplies/CHANGELOG.md +++ b/token_supplies/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.35](https://github.com/maidsafe/safe_network/compare/token_supplies-v0.1.34...token_supplies-v0.1.35) - 2024-02-07 + +### Other +- update dependencies + ## [0.1.34](https://github.com/maidsafe/safe_network/compare/token_supplies-v0.1.33...token_supplies-v0.1.34) - 2024-02-06 ### Other diff --git a/token_supplies/Cargo.toml b/token_supplies/Cargo.toml index c012352464..92f48f2664 100644 --- a/token_supplies/Cargo.toml +++ b/token_supplies/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "token_supplies" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.1.34" +version = "0.1.35" [dependencies]