Skip to content

Commit

Permalink
chore(release): release candidate 2024.10.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jacderida committed Oct 21, 2024
1 parent 2a7c924 commit af19ff0
Show file tree
Hide file tree
Showing 23 changed files with 110 additions and 110 deletions.
42 changes: 21 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions autonomi-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autonomi-cli"
version = "0.1.1-rc.1"
version = "0.1.1-rc.2"
edition = "2021"

[[bin]]
Expand All @@ -18,7 +18,7 @@ name = "files"
harness = false

[dependencies]
autonomi = { path = "../autonomi", version = "0.2.0-rc.1", features = [
autonomi = { path = "../autonomi", version = "0.2.0-rc.2", features = [
"data",
"fs",
"registers",
Expand All @@ -38,12 +38,12 @@ tokio = { version = "1.32.0", features = [
"fs",
] }
tracing = { version = "~0.1.26" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.4-rc.1" }
sn_build_info = { path = "../sn_build_info", version = "0.1.16-rc.1" }
sn_logging = { path = "../sn_logging", version = "0.2.37-rc.1" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.4-rc.2" }
sn_build_info = { path = "../sn_build_info", version = "0.1.16-rc.2" }
sn_logging = { path = "../sn_logging", version = "0.2.37-rc.2" }

[dev-dependencies]
autonomi = { path = "../autonomi", version = "0.2.0-rc.1", features = [
autonomi = { path = "../autonomi", version = "0.2.0-rc.2", features = [
"data",
"fs",
] }
Expand Down
18 changes: 9 additions & 9 deletions autonomi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["MaidSafe Developers <[email protected]>"]
description = "Autonomi client API"
name = "autonomi"
license = "GPL-3.0"
version = "0.2.0-rc.1"
version = "0.2.0-rc.2"
edition = "2021"
homepage = "https://maidsafe.net"
readme = "README.md"
Expand Down Expand Up @@ -37,11 +37,11 @@ rand = "0.8.5"
rmp-serde = "1.1.1"
self_encryption = "~0.30.0"
serde = { version = "1.0.133", features = ["derive", "rc"] }
sn_networking = { path = "../sn_networking", version = "0.19.0-rc.1" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.4-rc.1" }
sn_protocol = { version = "0.17.12-rc.1", path = "../sn_protocol" }
sn_registers = { path = "../sn_registers", version = "0.4.0-rc.1" }
sn_evm = { path = "../sn_evm", version = "0.1.1-rc.1" }
sn_networking = { path = "../sn_networking", version = "0.19.0-rc.2" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.4-rc.2" }
sn_protocol = { version = "0.17.12-rc.2", path = "../sn_protocol" }
sn_registers = { path = "../sn_registers", version = "0.4.0-rc.2" }
sn_evm = { path = "../sn_evm", version = "0.1.1-rc.2" }
thiserror = "1.0.23"
tokio = { version = "1.35.0", features = ["sync"] }
tracing = { version = "~0.1.26" }
Expand All @@ -55,8 +55,8 @@ serde-wasm-bindgen = "0.6.5"
[dev-dependencies]
eyre = "0.6.5"
sha2 = "0.10.6"
sn_logging = { path = "../sn_logging", version = "0.2.37-rc.1" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.4-rc.1" }
sn_logging = { path = "../sn_logging", version = "0.2.37-rc.2" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.4-rc.2" }
# Do not specify the version field. Release process expects even the local dev deps to be published.
# Removing the version field is a workaround.
test_utils = { path = "../test_utils" }
Expand All @@ -66,7 +66,7 @@ wasm-bindgen-test = "0.3.43"

[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.7"
evmlib = { path = "../evmlib", version = "0.1.1-rc.1", features = ["wasm-bindgen"] }
evmlib = { path = "../evmlib", version = "0.1.1-rc.2", features = ["wasm-bindgen"] }
# See https://github.com/sebcrozet/instant/blob/7bd13f51f5c930239fddc0476a837870fb239ed7/README.md#using-instant-for-a-wasm-platform-where-performancenow-is-not-available
instant = { version = "0.1", features = ["wasm-bindgen", "inaccurate"] }
js-sys = "0.3.70"
Expand Down
6 changes: 3 additions & 3 deletions evm_testnet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ homepage = "https://maidsafe.net"
license = "GPL-3.0"
name = "evm_testnet"
repository = "https://github.com/maidsafe/safe_network"
version = "0.1.1-rc.1"
version = "0.1.1-rc.2"

[dependencies]
clap = { version = "4.5", features = ["derive"] }
dirs-next = "~2.0.0"
evmlib = { path = "../evmlib", version = "0.1.1-rc.1" }
sn_evm = { path = "../sn_evm", version = "0.1.1-rc.1" }
evmlib = { path = "../evmlib", version = "0.1.1-rc.2" }
sn_evm = { path = "../sn_evm", version = "0.1.1-rc.2" }
tokio = { version = "1.40", features = ["rt-multi-thread", "signal"] }

[lints]
Expand Down
2 changes: 1 addition & 1 deletion evmlib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ homepage = "https://maidsafe.net"
license = "GPL-3.0"
name = "evmlib"
repository = "https://github.com/maidsafe/safe_network"
version = "0.1.1-rc.1"
version = "0.1.1-rc.2"

[features]
wasm-bindgen = ["alloy/wasm-bindgen"]
Expand Down
8 changes: 4 additions & 4 deletions nat-detection/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "GPL-3.0"
name = "nat-detection"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.2.8-rc.1"
version = "0.2.8-rc.2"

[[bin]]
name = "nat-detection"
Expand All @@ -31,9 +31,9 @@ libp2p = { version = "0.54.1", features = [
"macros",
"upnp",
] }
sn_build_info = { path = "../sn_build_info", version = "0.1.16-rc.1" }
sn_networking = { path = "../sn_networking", version = "0.19.0-rc.1" }
sn_protocol = { path = "../sn_protocol", version = "0.17.12-rc.1" }
sn_build_info = { path = "../sn_build_info", version = "0.1.16-rc.2" }
sn_networking = { path = "../sn_networking", version = "0.19.0-rc.2" }
sn_protocol = { path = "../sn_protocol", version = "0.17.12-rc.2" }
tokio = { version = "1.32.0", features = ["full"] }
tracing = { version = "~0.1.26" }
tracing-log = "0.2.0"
Expand Down
14 changes: 7 additions & 7 deletions node-launchpad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["MaidSafe Developers <[email protected]>"]
description = "Node Launchpad"
name = "node-launchpad"
version = "0.4.0-rc.1"
version = "0.4.0-rc.2"
edition = "2021"
license = "GPL-3.0"
homepage = "https://maidsafe.net"
Expand Down Expand Up @@ -51,13 +51,13 @@ reqwest = { version = "0.12.2", default-features = false, features = [
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
signal-hook = "0.3.17"
sn_build_info = { path = "../sn_build_info", version = "0.1.16-rc.1" }
sn_evm = { path = "../sn_evm", version = "0.1.1-rc.1" }
sn-node-manager = { version = "0.11.0-rc.1", path = "../sn_node_manager" }
sn_peers_acquisition = { version = "0.5.4-rc.1", path = "../sn_peers_acquisition" }
sn_protocol = { path = "../sn_protocol", version = "0.17.12-rc.1" }
sn_build_info = { path = "../sn_build_info", version = "0.1.16-rc.2" }
sn_evm = { path = "../sn_evm", version = "0.1.1-rc.2" }
sn-node-manager = { version = "0.11.0-rc.2", path = "../sn_node_manager" }
sn_peers_acquisition = { version = "0.5.4-rc.2", path = "../sn_peers_acquisition" }
sn_protocol = { path = "../sn_protocol", version = "0.17.12-rc.2" }
sn-releases = "~0.2.6"
sn_service_management = { version = "0.4.0-rc.1", path = "../sn_service_management" }
sn_service_management = { version = "0.4.0-rc.2", path = "../sn_service_management" }
strip-ansi-escapes = "0.2.0"
strum = { version = "0.26.1", features = ["derive"] }
sysinfo = "0.30.12"
Expand Down
2 changes: 1 addition & 1 deletion release-cycle-info
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
release-year: 2024
release-month: 10
release-cycle: 3
release-cycle-counter: 1
release-cycle-counter: 2
2 changes: 1 addition & 1 deletion sn_build_info/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_build_info"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.1.16-rc.1"
version = "0.1.16-rc.2"
build = "build.rs"

[build-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions sn_evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ license = "GPL-3.0"
name = "sn_evm"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.1.1-rc.1"
version = "0.1.1-rc.2"

[features]
test-utils = []
local = ["evmlib/local"]

[dependencies]
custom_debug = "~0.6.1"
evmlib = { path = "../evmlib", version = "0.1.1-rc.1" }
evmlib = { path = "../evmlib", version = "0.1.1-rc.2" }
hex = "~0.4.3"
lazy_static = "~1.4.0"
libp2p = { version = "0.53", features = ["identify", "kad"] }
Expand Down
2 changes: 1 addition & 1 deletion sn_logging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_logging"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.2.37-rc.1"
version = "0.2.37-rc.2"

[dependencies]
chrono = "~0.4.19"
Expand Down
2 changes: 1 addition & 1 deletion sn_metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_metrics"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.1.17-rc.1"
version = "0.1.17-rc.2"

[[bin]]
path = "src/main.rs"
Expand Down
Loading

0 comments on commit af19ff0

Please sign in to comment.