Skip to content

Commit

Permalink
chore: bump versions to enable re-release with env vars at compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuef committed Jun 3, 2024
1 parent 49f13ac commit f401eff
Show file tree
Hide file tree
Showing 13 changed files with 37 additions and 37 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion node-launchpad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ signal-hook = "0.3.17"
sn-node-manager = { version = "0.9.0", path = "../sn_node_manager" }
sn_peers_acquisition = { version = "0.3.0", path = "../sn_peers_acquisition", features = ["network-contacts"]}
sn-releases = "~0.2.6"
sn_service_management = { version = "0.3.1", path = "../sn_service_management" }
sn_service_management = { version = "0.3.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 sn_auditor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dirs-next = "~2.0.0"
graphviz-rust = { version = "0.9.0", optional = true }
serde = { version = "1.0.133", features = ["derive", "rc"] }
serde_json = "1.0.108"
sn_client = { path = "../sn_client", version = "0.107.0" }
sn_client = { path = "../sn_client", version = "0.107.1" }
sn_logging = { path = "../sn_logging", version = "0.2.27" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.3.0" }
tiny_http = { version = "0.12", features = ["ssl-rustls"] }
Expand Down
6 changes: 3 additions & 3 deletions sn_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ reqwest = { version = "0.12.2", default-features = false, features = [
rmp-serde = "1.1.1"
serde = { version = "1.0.133", features = ["derive"] }
sn_build_info = { path = "../sn_build_info", version = "0.1.7" }
sn_client = { path = "../sn_client", version = "0.107.0" }
sn_client = { path = "../sn_client", version = "0.107.1" }
sn_logging = { path = "../sn_logging", version = "0.2.27" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.3.0" }
sn_protocol = { path = "../sn_protocol", version = "0.17.0" }
sn_protocol = { path = "../sn_protocol", version = "0.17.1" }
tempfile = "3.6.0"
tiny-keccak = "~2.0.2"
tokio = { version = "1.32.0", features = [
Expand All @@ -83,7 +83,7 @@ eyre = "0.6.8"
criterion = "0.5.1"
tempfile = "3.6.0"
rand = { version = "~0.8.5", features = ["small_rng"] }
sn_client = { path = "../sn_client", version = "0.107.0", features = [
sn_client = { path = "../sn_client", version = "0.107.1", features = [
"test-utils",
] }

Expand Down
6 changes: 3 additions & 3 deletions sn_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_client"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.107.0"
version = "0.107.1"

[features]
default = []
Expand Down Expand Up @@ -50,10 +50,10 @@ 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.16.0" }
sn_protocol = { path = "../sn_protocol", version = "0.17.0" }
sn_protocol = { path = "../sn_protocol", version = "0.17.1" }
serde_json = "1.0"
sn_registers = { path = "../sn_registers", version = "0.3.13" }
sn_transfers = { path = "../sn_transfers", version = "0.18.2" }
sn_transfers = { path = "../sn_transfers", version = "0.18.3" }
tempfile = "3.6.0"
thiserror = "1.0.23"
tiny-keccak = "~2.0.2"
Expand Down
8 changes: 4 additions & 4 deletions sn_faucet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_faucet"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.4.20"
version = "0.4.21"

[features]
default = ["gifting"]
Expand Down Expand Up @@ -39,11 +39,11 @@ serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
sn_build_info = { path = "../sn_build_info", version = "0.1.7" }
sn_cli = { path = "../sn_cli", version = "0.93.0" }
sn_client = { path = "../sn_client", version = "0.107.0" }
sn_client = { path = "../sn_client", version = "0.107.1" }
sn_logging = { path = "../sn_logging", version = "0.2.27" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.3.0" }
sn_protocol = { path = "../sn_protocol", version = "0.17.0" }
sn_transfers = { path = "../sn_transfers", version = "0.18.2" }
sn_protocol = { path = "../sn_protocol", version = "0.17.1" }
sn_transfers = { path = "../sn_transfers", version = "0.18.3" }
tokio = { version = "1.32.0", features = ["parking_lot", "rt"] }
tracing = { version = "~0.1.26" }
url = "2.5.0"
Expand Down
4 changes: 2 additions & 2 deletions sn_networking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ rayon = "1.8.0"
rmp-serde = "1.1.1"
serde = { version = "1.0.133", features = ["derive", "rc"] }
sn_build_info = { path="../sn_build_info", version = "0.1.7" }
sn_protocol = { path = "../sn_protocol", version = "0.17.0" }
sn_transfers = { path = "../sn_transfers", version = "0.18.2" }
sn_protocol = { path = "../sn_protocol", version = "0.17.1" }
sn_transfers = { path = "../sn_transfers", version = "0.18.3" }
sn_registers = { path = "../sn_registers", version = "0.3.13" }
sysinfo = { version = "0.30.8", default-features = false, optional = true }
thiserror = "1.0.23"
Expand Down
10 changes: 5 additions & 5 deletions sn_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ self_encryption = "~0.29.0"
serde = { version = "1.0.133", features = ["derive", "rc"] }
sn_build_info = { path = "../sn_build_info", version = "0.1.7" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.3.0" }
sn_client = { path = "../sn_client", version = "0.107.0" }
sn_client = { path = "../sn_client", version = "0.107.1" }
sn_logging = { path = "../sn_logging", version = "0.2.27" }
sn_networking = { path = "../sn_networking", version = "0.16.0" }
sn_protocol = { path = "../sn_protocol", version = "0.17.0" }
sn_protocol = { path = "../sn_protocol", version = "0.17.1" }
sn_registers = { path = "../sn_registers", version = "0.3.13" }
sn_transfers = { path = "../sn_transfers", version = "0.18.2" }
sn_service_management = { path = "../sn_service_management", version = "0.3.1" }
sn_transfers = { path = "../sn_transfers", version = "0.18.3" }
sn_service_management = { path = "../sn_service_management", version = "0.3.2" }
thiserror = "1.0.23"
tokio = { version = "1.32.0", features = [
"io-util",
Expand All @@ -86,7 +86,7 @@ reqwest = { version = "0.12.2", default-features = false, features = [
"rustls-tls-manual-roots",
] }
serde_json = "1.0"
sn_protocol = { path = "../sn_protocol", version = "0.17.0", features = [
sn_protocol = { path = "../sn_protocol", version = "0.17.1", features = [
"rpc",
] }
tempfile = "3.6.0"
Expand Down
6 changes: 3 additions & 3 deletions sn_node_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ serde_json = "1.0"
service-manager = "0.7.0"
sn_logging = { path = "../sn_logging", version = "0.2.27" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.3.0" }
sn_protocol = { path = "../sn_protocol", version = "0.17.0" }
sn_service_management = { path = "../sn_service_management", version = "0.3.1" }
sn_protocol = { path = "../sn_protocol", version = "0.17.1" }
sn_service_management = { path = "../sn_service_management", version = "0.3.2" }
sn-releases = "0.2.6"
sn_transfers = { path = "../sn_transfers", version = "0.18.2" }
sn_transfers = { path = "../sn_transfers", version = "0.18.3" }
sysinfo = "0.30.12"
tokio = { version = "1.26", features = ["full"] }
tracing = { version = "~0.1.26" }
Expand Down
8 changes: 4 additions & 4 deletions sn_node_rpc_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ 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.107.0" }
sn_client = { path = "../sn_client", version = "0.107.1" }
sn_logging = { path = "../sn_logging", version = "0.2.27" }
sn_node = { path = "../sn_node", version = "0.107.0" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.3.0" }
sn_protocol = { path = "../sn_protocol", version = "0.17.0", features=["rpc"] }
sn_service_management = { path = "../sn_service_management", version = "0.3.1" }
sn_transfers = { path = "../sn_transfers", version = "0.18.2" }
sn_protocol = { path = "../sn_protocol", version = "0.17.1", features=["rpc"] }
sn_service_management = { path = "../sn_service_management", version = "0.3.2" }
sn_transfers = { path = "../sn_transfers", version = "0.18.3" }
thiserror = "1.0.23"
# # watch out updating this, protoc compiler needs to be installed on all build systems
# # arm builds + musl are very problematic
Expand Down
4 changes: 2 additions & 2 deletions sn_protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "GPL-3.0"
name = "sn_protocol"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.17.0"
version = "0.17.1"

[features]
default = []
Expand All @@ -27,7 +27,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.18.2" }
sn_transfers = { path = "../sn_transfers", version = "0.18.3" }
sn_registers = { path = "../sn_registers", version = "0.3.13" }
thiserror = "1.0.23"
tiny-keccak = { version = "~2.0.2", features = [ "sha3" ] }
Expand Down
6 changes: 3 additions & 3 deletions sn_service_management/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "GPL-3.0"
name = "sn_service_management"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.3.1"
version = "0.3.2"

[dependencies]
async-trait = "0.1"
Expand All @@ -20,10 +20,10 @@ serde_json = "1.0"
semver = "1.0.20"
service-manager = "0.7.0"
sn_logging = { path = "../sn_logging", version = "0.2.27" }
sn_protocol = { path = "../sn_protocol", version = "0.17.0", features = [
sn_protocol = { path = "../sn_protocol", version = "0.17.1", features = [
"rpc",
] }
sn_transfers = { path = "../sn_transfers", version = "0.18.2" }
sn_transfers = { path = "../sn_transfers", version = "0.18.3" }
sysinfo = "0.30.12"
thiserror = "1.0.23"
tokio = { version = "1.32.0", features = ["time"] }
Expand Down
2 changes: 1 addition & 1 deletion sn_transfers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_transfers"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.18.2"
version = "0.18.3"

[features]
reward-forward = []
Expand Down

0 comments on commit f401eff

Please sign in to comment.