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
raychu86 committed Sep 18, 2024
1 parent 01e8bf6 commit e9f8561
Show file tree
Hide file tree
Showing 22 changed files with 129 additions and 125 deletions.
4 changes: 2 additions & 2 deletions .integration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-integration"
version = "2.2.7"
version = "3.0.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "A integration testing suite for a decentralized operating system"
homepage = "https://aleo.org"
Expand All @@ -12,7 +12,7 @@ keywords = [
"decentralized",
"zero-knowledge"
]
categories = [ "cryptography", "operating-systems" ]
categories = [ "cryptography", "cryptography::cryptocurrencies", "os" ]
license = "Apache-2.0"
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion .resources/release-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.2.7
v3.0.0
40 changes: 20 additions & 20 deletions Cargo.lock

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

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos"
version = "2.2.7"
version = "3.0.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "A decentralized operating system"
homepage = "https://aleo.org"
Expand All @@ -12,7 +12,7 @@ keywords = [
"decentralized",
"zero-knowledge"
]
categories = [ "cryptography", "operating-systems" ]
categories = [ "cryptography", "cryptography::cryptocurrencies", "os" ]
license = "Apache-2.0"
edition = "2021"
rust-version = "1.76.0" # Attention - Change the MSRV in rust-toolchain and in .circleci/config.yml as well
Expand Down Expand Up @@ -74,52 +74,52 @@ version = "1"

[dependencies.snarkos-account]
path = "./account"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkos-cli]
path = "./cli"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkos-display]
path = "./display"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkos-node]
path = "./node"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkos-node-bft]
path = "./node/bft"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkos-node-cdn]
path = "./node/cdn"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkos-node-consensus]
path = "./node/consensus"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkos-node-metrics]
path = "./node/metrics"
version = "=2.2.7"
version = "=3.0.0"
optional = true

[dependencies.snarkos-node-rest]
path = "./node/rest"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkos-node-router]
path = "./node/router"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkos-node-sync]
path = "./node/sync"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkos-node-tcp]
path = "./node/tcp"
version = "=2.2.7"
version = "=3.0.0"

[target.'cfg(all(target_os = "linux", target_arch = "x86_64"))'.dependencies]
tikv-jemallocator = "0.5"
Expand Down
4 changes: 2 additions & 2 deletions account/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-account"
version = "2.2.7"
version = "3.0.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Account for a decentralized operating system"
homepage = "https://aleo.org"
Expand All @@ -12,7 +12,7 @@ keywords = [
"decentralized",
"zero-knowledge"
]
categories = [ "cryptography", "operating-systems" ]
categories = [ "cryptography", "cryptography::cryptocurrencies", "os" ]
license = "Apache-2.0"
edition = "2021"

Expand Down
16 changes: 8 additions & 8 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-cli"
version = "2.2.7"
version = "3.0.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "A CLI for a decentralized operating system"
homepage = "https://aleo.org"
Expand All @@ -12,7 +12,7 @@ keywords = [
"decentralized",
"zero-knowledge"
]
categories = [ "cryptography", "operating-systems" ]
categories = [ "cryptography", "cryptography::cryptocurrencies", "os" ]
license = "Apache-2.0"
edition = "2021"

Expand Down Expand Up @@ -48,7 +48,7 @@ features = [ "serde", "rayon" ]
[dependencies.metrics]
package = "snarkos-node-metrics"
path = "../node/metrics"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.num_cpus]
version = "1"
Expand Down Expand Up @@ -80,23 +80,23 @@ features = [ "preserve_order" ]

[dependencies.snarkos-account]
path = "../account"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkos-display]
path = "../display"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkos-node]
path = "../node"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkos-node-cdn]
path = "../node/cdn"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkos-node-rest]
path = "../node/rest"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkvm]
workspace = true
Expand Down
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.2.7"
version = "3.0.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "A display for a decentralized operating system"
homepage = "https://aleo.org"
Expand All @@ -12,7 +12,7 @@ keywords = [
"decentralized",
"zero-knowledge"
]
categories = [ "cryptography", "operating-systems" ]
categories = [ "cryptography", "cryptography::cryptocurrencies", "os" ]
license = "Apache-2.0"
edition = "2021"

Expand All @@ -27,7 +27,7 @@ version = "0.25"

[dependencies.snarkos-node]
path = "../node"
version = "=2.2.7"
version = "=3.0.0"

[dependencies.snarkvm]
workspace = true
Expand Down
Loading

0 comments on commit e9f8561

Please sign in to comment.