From 0176a597c9c9f2f0bce0dac8920dba9d71f0473b Mon Sep 17 00:00:00 2001 From: Chris O'Neil Date: Wed, 27 Nov 2024 16:45:37 +0000 Subject: [PATCH] chore: bump sn_node version This should have been done as part of the hotfix process, but it was overlooked. I have also switched off the inclusion of debugging symbols for the release build. At some later stage, we might be able to distribute debugging symbols separately. --- Cargo.lock | 4 ++-- Cargo.toml | 3 --- sn_node/Cargo.toml | 2 +- sn_node_rpc_client/Cargo.toml | 4 ++-- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bf43ed80d9..3c8de7de33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8638,7 +8638,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.112.5" +version = "0.112.6" dependencies = [ "assert_fs", "async-trait", @@ -8695,7 +8695,7 @@ dependencies = [ [[package]] name = "sn_node_rpc_client" -version = "0.6.35" +version = "0.6.36" dependencies = [ "assert_fs", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 40750e1775..888d541c75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,9 +42,6 @@ unused_async = "warn" unwrap_used = "warn" clone_on_ref_ptr = "warn" -[profile.release] -debug = true - [profile.dev] debug = 0 strip = "debuginfo" diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 64b295c87d..972876d73f 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.112.5" +version = "0.112.6" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index 29bc1f497b..30e687114c 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.6.35" +version = "0.6.36" [[bin]] name = "safenode_rpc_client" @@ -28,7 +28,7 @@ libp2p = { version = "0.54.1", features = ["kad"]} libp2p-identity = { version="0.2.7", features = ["rand"] } sn_build_info = { path = "../sn_build_info", version = "0.1.19" } sn_logging = { path = "../sn_logging", version = "0.2.40" } -sn_node = { path = "../sn_node", version = "0.112.5" } +sn_node = { path = "../sn_node", version = "0.112.6" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.7" } sn_protocol = { path = "../sn_protocol", version = "0.17.15", features=["rpc"] } sn_service_management = { path = "../sn_service_management", version = "0.4.3" }