Skip to content

Commit

Permalink
chore(snarkos): bump version for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
howardwu committed Jun 14, 2023
1 parent d2024c3 commit 60c8344
Show file tree
Hide file tree
Showing 16 changed files with 127 additions and 114 deletions.
6 changes: 3 additions & 3 deletions .integration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-integration"
version = "2.0.2"
version = "2.1.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "A integration testing suite for a decentralized operating system"
homepage = "https://aleo.org"
Expand All @@ -21,11 +21,11 @@ path = "../node/cdn"

[dev-dependencies.snarkvm]
workspace = true
features = ["synthesizer"]
features = [ "synthesizer" ]

[dev-dependencies.tokio]
version = "1.28"
features = ["rt"]
features = [ "rt" ]

[dev-dependencies.tracing]
version = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion .resources/release-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.0.2
v2.1.0
28 changes: 14 additions & 14 deletions Cargo.lock

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

73 changes: 35 additions & 38 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "snarkos"
version = "2.0.2"
version = "2.1.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "A decentralized operating system"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkOS"
keywords = [
"aleo",
"cryptography",
"blockchain",
"decentralized",
"zero-knowledge"
"aleo",
"cryptography",
"blockchain",
"decentralized",
"zero-knowledge"
]
categories = [ "cryptography", "operating-systems" ]
license = "Apache-2.0"
Expand All @@ -19,88 +19,85 @@ rust-version = "1.66"

[workspace]
members = [
"account",
"cli",
"display",
"node",
"node/cdn",
"node/consensus",
"node/env",
"node/messages",
"node/metrics",
"node/rest",
"node/router",
"node/tcp",
".integration",
"account",
"cli",
"display",
"node",
"node/cdn",
"node/consensus",
"node/env",
"node/messages",
"node/metrics",
"node/rest",
"node/router",
"node/tcp",
".integration"
]

[workspace.dependencies.snarkvm]
version = "=0.12.1"
features = [ "circuit", "console", "rocks" ]

[[bin]]
name = "snarkos"
path = "snarkos/main.rs"

[features]
jemalloc = [ "tikv-jemallocator" ]

[workspace.dependencies.snarkvm]
#path = "../snarkVM"
#git = "https://github.com/AleoHQ/snarkVM.git"
#rev = "481b701"
version = "=0.12.1"
features = ["circuit", "console", "rocks"]

[dependencies.anyhow]
version = "1.0.70"

[dependencies.clap]
version = "4.3"
features = ["derive"]
features = [ "derive" ]

[dependencies.once_cell]
version = "1"

[dependencies.snarkos-account]
path = "./account"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkos-cli]
path = "./cli"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkos-display]
path = "./display"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkos-node]
path = "./node"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkos-node-cdn]
path = "./node/cdn"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkos-node-consensus]
path = "./node/consensus"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkos-node-env]
path = "./node/env"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkos-node-messages]
path = "./node/messages"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkos-node-rest]
path = "./node/rest"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkos-node-router]
path = "./node/router"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkos-node-tcp]
path = "./node/tcp"
version = "2.0.2"
version = "=2.1.0"

[dependencies.tikv-jemallocator]
version = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion account/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-account"
version = "2.0.2"
version = "2.1.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Account for a decentralized operating system"
homepage = "https://aleo.org"
Expand Down
20 changes: 10 additions & 10 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-cli"
version = "2.0.2"
version = "2.1.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "A CLI for a decentralized operating system"
homepage = "https://aleo.org"
Expand Down Expand Up @@ -28,17 +28,14 @@ version = "1.0.70"

[dependencies.clap]
version = "4.3"
features = ["derive", "color", "unstable-styles"]
features = [ "derive", "color", "unstable-styles" ]

[dependencies.colored]
version = "2"

[dependencies.crossterm]
version = "0.26"

[target.'cfg(target_family = "unix")'.dependencies.nix]
version = "0.26"

[dependencies.num_cpus]
version = "1"

Expand Down Expand Up @@ -67,19 +64,19 @@ version = "1"

[dependencies.snarkos-account]
path = "../account"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkos-display]
path = "../display"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkos-node]
path = "../node"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkos-node-rest]
path = "../node/rest"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkvm]
workspace = true
Expand All @@ -89,7 +86,7 @@ version = "1.0"

[dependencies.tokio]
version = "1.28"
features = ["rt"]
features = [ "rt" ]

[dependencies.tracing-subscriber]
version = "0.3"
Expand All @@ -98,5 +95,8 @@ features = [ "env-filter" ]
[dependencies.ureq]
version = "2.5"

[target."cfg(target_family = \"unix\")".dependencies.nix]
version = "0.26"

[dev-dependencies.indexmap]
version = "1"
6 changes: 3 additions & 3 deletions display/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-display"
version = "2.0.2"
version = "2.1.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "A display for a decentralized operating system"
homepage = "https://aleo.org"
Expand All @@ -24,14 +24,14 @@ version = "0.26"

[dependencies.snarkos-node]
path = "../node"
version = "2.0.2"
version = "=2.1.0"

[dependencies.snarkvm]
workspace = true

[dependencies.tokio]
version = "1.28"
features = ["rt"]
features = [ "rt" ]

[dependencies.tui]
version = "0.19"
Loading

0 comments on commit 60c8344

Please sign in to comment.