diff --git a/Cargo.lock b/Cargo.lock index d092690fc0..d5f3ef9542 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4610,7 +4610,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.89.10" +version = "0.89.11" dependencies = [ "blsttc", "bytes", @@ -4683,7 +4683,7 @@ dependencies = [ [[package]] name = "sn_faucet" -version = "0.3.10" +version = "0.3.11" dependencies = [ "blsttc", "clap 4.4.18", @@ -4705,7 +4705,7 @@ dependencies = [ [[package]] name = "sn_logging" -version = "0.2.16" +version = "0.2.17" dependencies = [ "chrono", "dirs-next", @@ -4759,7 +4759,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.103.10" +version = "0.103.11" dependencies = [ "assert_fs", "async-trait", @@ -4811,7 +4811,7 @@ dependencies = [ [[package]] name = "sn_node_rpc_client" -version = "0.3.10" +version = "0.3.11" dependencies = [ "assert_fs", "async-trait", @@ -4896,7 +4896,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.3.31" +version = "0.3.32" dependencies = [ "assert_fs", "clap 3.2.25", @@ -5304,7 +5304,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "token_supplies" -version = "0.1.1" +version = "0.1.2" dependencies = [ "dirs-next", "reqwest", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 568a650bfd..2c3ba6a81e 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.11](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.89.10...sn_cli-v0.89.11) - 2024-01-23 + +### Other +- update dependencies + ## [0.89.10](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.89.9...sn_cli-v0.89.10) - 2024-01-23 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index eaed6ae1c1..3809874d18 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.10" +version = "0.89.11" [[bin]] path="src/main.rs" @@ -47,7 +47,7 @@ sn_build_info = { path="../sn_build_info", version = "0.1.4" } sn_client = { path = "../sn_client", version = "0.102.7" } sn_transfers = { path = "../sn_transfers", version = "0.14.40" } sn_registers = { path = "../sn_registers", version = "0.3.7" } -sn_logging = { path = "../sn_logging", version = "0.2.16" } +sn_logging = { path = "../sn_logging", version = "0.2.17" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.3" } sn_protocol = { path = "../sn_protocol", version = "0.10.14" } tempfile = "3.6.0" diff --git a/sn_faucet/CHANGELOG.md b/sn_faucet/CHANGELOG.md index 68f8a16b4d..c99e864d4b 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.11](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.3.10...sn_faucet-v0.3.11) - 2024-01-23 + +### Other +- update dependencies + ## [0.3.10](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.3.9...sn_faucet-v0.3.10) - 2024-01-23 ### Other diff --git a/sn_faucet/Cargo.toml b/sn_faucet/Cargo.toml index 23ad88c41d..09cce73b74 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.10" +version = "0.3.11" [features] default = ["quic"] @@ -29,7 +29,7 @@ minreq = { version = "2.11.0", features = ["https-rustls"] } serde = { version = "1.0.193", features = ["derive"] } serde_json = "1.0.108" sn_client = { path = "../sn_client", version = "0.102.7" } -sn_logging = { path = "../sn_logging", version = "0.2.16" } +sn_logging = { path = "../sn_logging", version = "0.2.17" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.3" } sn_transfers = { path = "../sn_transfers", version = "0.14.40" } tiny_http = { version="0.12", features = ["ssl-rustls"] } diff --git a/sn_logging/CHANGELOG.md b/sn_logging/CHANGELOG.md index 179fe288f4..246122f2b7 100644 --- a/sn_logging/CHANGELOG.md +++ b/sn_logging/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.17](https://github.com/maidsafe/safe_network/compare/sn_logging-v0.2.16...sn_logging-v0.2.17) - 2024-01-23 + +### Other +- *(node)* reduce MAX_UNCOMPRESSED_LOG_FILES to 10 + ## [0.2.16](https://github.com/maidsafe/safe_network/compare/sn_logging-v0.2.15...sn_logging-v0.2.16) - 2023-12-06 ### Other diff --git a/sn_logging/Cargo.toml b/sn_logging/Cargo.toml index 7125c299f3..6cccea94ca 100644 --- a/sn_logging/Cargo.toml +++ b/sn_logging/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_logging" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.2.16" +version = "0.2.17" [dependencies] chrono = "~0.4.19" diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index 0a207a86bb..2e76d3d1b2 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -2954,6 +2954,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.103.11](https://github.com/maidsafe/safe_network/compare/sn_node-v0.103.10...sn_node-v0.103.11) - 2024-01-23 + +### Other +- update dependencies + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 50a5ca6254..fbbafd8e99 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.10" +version = "0.103.11" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -52,7 +52,7 @@ 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.3" } sn_client = { path = "../sn_client", version = "0.102.7" } -sn_logging = { path = "../sn_logging", version = "0.2.16" } +sn_logging = { path = "../sn_logging", version = "0.2.17" } sn_networking = { path = "../sn_networking", version = "0.12.35" } sn_protocol = { path = "../sn_protocol", version = "0.10.14" } sn_registers = { path = "../sn_registers", version = "0.3.7" } diff --git a/sn_node_rpc_client/CHANGELOG.md b/sn_node_rpc_client/CHANGELOG.md index fc1df00a63..82e4f6473e 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.3.11](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.3.10...sn_node_rpc_client-v0.3.11) - 2024-01-23 + +### Other +- update dependencies + ## [0.3.10](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.3.9...sn_node_rpc_client-v0.3.10) - 2024-01-23 ### Other diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index cdfc6b68f8..bdc1cd5164 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.3.10" +version = "0.3.11" [[bin]] path="src/main.rs" @@ -24,8 +24,8 @@ hex = "~0.4.3" libp2p = { version="0.52", features = ["kad"]} libp2p-identity = { version="0.2.7", features = ["rand"] } sn_client = { path = "../sn_client", version = "0.102.7" } -sn_logging = { path = "../sn_logging", version = "0.2.16" } -sn_node = { path = "../sn_node", version = "0.103.10" } +sn_logging = { path = "../sn_logging", version = "0.2.17" } +sn_node = { path = "../sn_node", version = "0.103.11" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.3" } sn_protocol = { path = "../sn_protocol", version = "0.10.14" } sn_transfers = { path = "../sn_transfers", version = "0.14.40" } diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index fc5f2ac1be..8d136b4593 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -2607,6 +2607,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.3.32](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.3.31...sn_testnet-v0.3.32) - 2024-01-23 + +### Other +- update dependencies + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index 4b94ff7909..386560a32e 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.3.31" +version = "0.3.32" [features] # required to pass on flag to node builds diff --git a/token_supplies/CHANGELOG.md b/token_supplies/CHANGELOG.md index d4dbb14a90..bebd73c537 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.2](https://github.com/maidsafe/safe_network/compare/token_supplies-v0.1.1...token_supplies-v0.1.2) - 2024-01-23 + +### Other +- update dependencies + ## [0.1.1](https://github.com/maidsafe/safe_network/compare/token_supplies-v0.1.0...token_supplies-v0.1.1) - 2024-01-23 ### Other diff --git a/token_supplies/Cargo.toml b/token_supplies/Cargo.toml index 28f643b627..83e3f2c964 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.1" +version = "0.1.2" [dependencies]