Skip to content

Commit

Permalink
chore: set new alpha versions
Browse files Browse the repository at this point in the history
Also adds an initial CHANGELOG for the new sn_node_launchpad crate.
  • Loading branch information
jacderida committed May 1, 2024
1 parent ff83510 commit 380ad48
Show file tree
Hide file tree
Showing 21 changed files with 103 additions and 90 deletions.
38 changes: 19 additions & 19 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions sn_auditor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["MaidSafe Developers <[email protected]>"]
description = "Safe Network Auditor"
name = "sn_auditor"
version = "0.1.7"
version = "0.1.8-alpha"
edition = "2021"
homepage = "https://maidsafe.net"
repository = "https://github.com/maidsafe/safe_network"
Expand All @@ -24,9 +24,9 @@ dirs-next = "~2.0.0"
graphviz-rust = "0.9.0"
serde = { version = "1.0.133", features = [ "derive", "rc" ]}
serde_json = "1.0.108"
sn_client = { path = "../sn_client", version = "0.105.3" }
sn_logging = { path = "../sn_logging", version = "0.2.25" }
sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.10" }
sn_client = { path = "../sn_client", version = "0.105.4-alpha" }
sn_logging = { path = "../sn_logging", version = "0.2.26-alpha" }
sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.11-alpha" }
tiny_http = { version="0.12", features = ["ssl-rustls"] }
tracing = { version = "~0.1.26" }
tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time", "fs"] }
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.7"
version = "0.1.8-alpha"

[build-dependencies]
vergen = { version = "8.0.0", features = ["build", "git", "gitcl"] }
Expand Down
14 changes: 7 additions & 7 deletions sn_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_cli"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.90.4"
version = "0.90.5-alpha"

[[bin]]
path = "src/bin/main.rs"
Expand Down Expand Up @@ -57,11 +57,11 @@ 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.105.3" }
sn_logging = { path = "../sn_logging", version = "0.2.25" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.10" }
sn_protocol = { path = "../sn_protocol", version = "0.16.3" }
sn_build_info = { path = "../sn_build_info", version = "0.1.8-alpha" }
sn_client = { path = "../sn_client", version = "0.105.4-alpha" }
sn_logging = { path = "../sn_logging", version = "0.2.26-alpha" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.11-alpha" }
sn_protocol = { path = "../sn_protocol", version = "0.16.4-alpha" }
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.105.3", features = [
sn_client = { path = "../sn_client", version = "0.105.4-alpha", features = [
"test-utils",
] }

Expand Down
18 changes: 9 additions & 9 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.105.3"
version = "0.105.4-alpha"

[features]
default = []
Expand Down Expand Up @@ -41,11 +41,11 @@ 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.14.4" }
sn_protocol = { path = "../sn_protocol", version = "0.16.3" }
sn_networking = { path = "../sn_networking", version = "0.14.5-alpha" }
sn_protocol = { path = "../sn_protocol", version = "0.16.4-alpha" }
serde_json = "1.0"
sn_registers = { path = "../sn_registers", version = "0.3.12" }
sn_transfers = { path = "../sn_transfers", version = "0.17.2" }
sn_registers = { path = "../sn_registers", version = "0.3.13-alpha" }
sn_transfers = { path = "../sn_transfers", version = "0.17.3-alpha" }
tempfile = "3.6.0"
thiserror = "1.0.23"
tiny-keccak = "~2.0.2"
Expand All @@ -58,7 +58,7 @@ tokio = { version = "1.35.0", features = [
] }
tracing = { version = "~0.1.26" }
xor_name = "5.0.0"
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.10", optional = true }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.11-alpha", optional = true }
eyre = { version = "0.6.8", optional = true }
lazy_static = { version = "~1.4.0", optional = true }

Expand All @@ -68,8 +68,8 @@ dirs-next = "~2.0.0"
# add rand to libp2p
libp2p-identity = { version = "0.2.7", features = ["rand"] }
sn_client = { path = "../sn_client", features = ["test-utils"] }
sn_logging = { path = "../sn_logging", version = "0.2.25" }
sn_registers = { path = "../sn_registers", version = "0.3.12", features = [
sn_logging = { path = "../sn_logging", version = "0.2.26-alpha" }
sn_registers = { path = "../sn_registers", version = "0.3.13-alpha", features = [
"test-utils",
] }

Expand All @@ -84,7 +84,7 @@ crate-type = ["cdylib", "rlib"]
getrandom = { version = "0.2.12", features = ["js"] }
wasm-bindgen = "0.2.90"
wasm-bindgen-futures = "0.4.40"
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.10" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.11-alpha" }
console_error_panic_hook = "0.1.6"
tracing-wasm = "0.2.1"
wasmtimer = "0.2.0"
Expand Down
12 changes: 6 additions & 6 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.9"
version = "0.4.10-alpha"

[features]
default = []
Expand All @@ -35,11 +35,11 @@ indicatif = { version = "0.17.5", features = ["tokio"] }
minreq = { version = "2.11.0", features = ["https-rustls"], optional = true }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
sn_build_info = { path = "../sn_build_info", version = "0.1.7" }
sn_client = { path = "../sn_client", version = "0.105.3" }
sn_logging = { path = "../sn_logging", version = "0.2.25" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.10" }
sn_transfers = { path = "../sn_transfers", version = "0.17.2" }
sn_build_info = { path = "../sn_build_info", version = "0.1.8-alpha" }
sn_client = { path = "../sn_client", version = "0.105.4-alpha" }
sn_logging = { path = "../sn_logging", version = "0.2.26-alpha" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.11-alpha" }
sn_transfers = { path = "../sn_transfers", version = "0.17.3-alpha" }
tokio = { version = "1.32.0", features = ["parking_lot", "rt"] }
tracing = { version = "~0.1.26" }
url = "2.5.0"
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.25"
version = "0.2.26-alpha"

[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.4"
version = "0.1.5-alpha"

[[bin]]
path = "src/main.rs"
Expand Down
8 changes: 4 additions & 4 deletions sn_networking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_networking"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.14.4"
version = "0.14.5-alpha"

[features]
default = ["libp2p/quic"]
Expand Down Expand Up @@ -52,9 +52,9 @@ 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.16.3" }
sn_transfers = { path = "../sn_transfers", version = "0.17.2" }
sn_registers = { path = "../sn_registers", version = "0.3.12" }
sn_protocol = { path = "../sn_protocol", version = "0.16.4-alpha" }
sn_transfers = { path = "../sn_transfers", version = "0.17.3-alpha" }
sn_registers = { path = "../sn_registers", version = "0.3.13-alpha" }
sysinfo = { version = "0.30.8", default-features = false, optional = true }
thiserror = "1.0.23"
tiny-keccak = { version = "~2.0.2", features = ["sha3"] }
Expand Down
22 changes: 11 additions & 11 deletions sn_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["MaidSafe Developers <[email protected]>"]
description = "Safe Node"
name = "sn_node"
version = "0.105.6"
version = "0.105.7-alpha"
edition = "2021"
license = "GPL-3.0"
homepage = "https://maidsafe.net"
Expand Down Expand Up @@ -49,15 +49,15 @@ rmp-serde = "1.1.1"
rayon = "1.8.0"
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.2.10" }
sn_client = { path = "../sn_client", version = "0.105.3" }
sn_logging = { path = "../sn_logging", version = "0.2.25" }
sn_networking = { path = "../sn_networking", version = "0.14.4" }
sn_protocol = { path = "../sn_protocol", version = "0.16.3" }
sn_registers = { path = "../sn_registers", version = "0.3.12" }
sn_transfers = { path = "../sn_transfers", version = "0.17.2" }
sn_service_management = { path = "../sn_service_management", version = "0.2.4" }
sn_build_info = { path = "../sn_build_info", version = "0.1.8-alpha" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.11-alpha" }
sn_client = { path = "../sn_client", version = "0.105.4-alpha" }
sn_logging = { path = "../sn_logging", version = "0.2.26-alpha" }
sn_networking = { path = "../sn_networking", version = "0.14.5-alpha" }
sn_protocol = { path = "../sn_protocol", version = "0.16.4-alpha" }
sn_registers = { path = "../sn_registers", version = "0.3.13-alpha" }
sn_transfers = { path = "../sn_transfers", version = "0.17.3-alpha" }
sn_service_management = { path = "../sn_service_management", version = "0.2.5-alpha" }
thiserror = "1.0.23"
tokio = { version = "1.32.0", features = [
"io-util",
Expand All @@ -84,7 +84,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.16.3", features = [
sn_protocol = { path = "../sn_protocol", version = "0.16.4-alpha", features = [
"rpc",
] }
tempfile = "3.6.0"
Expand Down
Loading

0 comments on commit 380ad48

Please sign in to comment.