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 Apr 2, 2021
1 parent 520882f commit a68cd9b
Show file tree
Hide file tree
Showing 13 changed files with 68 additions and 59 deletions.
2 changes: 1 addition & 1 deletion .resources/release-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.2.0
v1.3.0
22 changes: 11 additions & 11 deletions Cargo.lock

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

25 changes: 15 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos"
version = "1.2.0"
version = "1.3.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "A decentralized operating system"
homepage = "https://aleo.org"
Expand All @@ -13,7 +13,13 @@ keywords = [
"zero-knowledge"
]
categories = [ "cryptography::cryptocurrencies", "operating-systems" ]
include = [ "Cargo.toml", "snarkos", "README.md", "LICENSE.md", "build.rs" ]
include = [
"Cargo.toml",
"snarkos",
"README.md",
"LICENSE.md",
"build.rs"
]
license = "GPL-3.0"
edition = "2018"

Expand Down Expand Up @@ -56,20 +62,20 @@ version = "0.2.2"

[dependencies.snarkos-consensus]
path = "./consensus"
version = "1.2.0"
version = "1.3.0"

[dependencies.snarkos-network]
path = "./network"
version = "1.2.0"
version = "1.3.0"

[dependencies.snarkos-rpc]
path = "./rpc"
version = "1.2.0"
version = "1.3.0"

[dependencies.snarkos-storage]
path = "./storage"
features = ["rocksdb_storage"]
version = "1.2.0"
features = [ "rocksdb_storage" ]
version = "1.3.0"

[dependencies.anyhow]
version = "1.0"
Expand Down Expand Up @@ -137,10 +143,9 @@ rustc_version = "0.2"
optional = true

[features]
default = []
default = [ ]
compile_capnp_schema = [ "capnpc" ]
# This feature flag is used to disable `target-cpu=native` in `.cargo/config`.
noconfig = []
noconfig = [ ]

[profile.release]
opt-level = 3
Expand Down
8 changes: 4 additions & 4 deletions benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-benchmarks"
version = "1.2.0"
version = "1.3.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Benchmarks for a decentralized operating system"
homepage = "https://aleo.org"
Expand Down Expand Up @@ -32,15 +32,15 @@ version = "0.2.2"

[dependencies.snarkos-profiler]
path = "../profiler"
version = "1.2.0"
version = "1.3.0"

[dependencies.snarkos-network]
path = "../network"
version = "1.2.0"
version = "1.3.0"

[dependencies.snarkos-testing]
path = "../testing"
version = "1.2.0"
version = "1.3.0"

[dependencies.csv]
version = "1"
Expand Down
6 changes: 3 additions & 3 deletions consensus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-consensus"
version = "1.2.0"
version = "1.3.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Consensus for a decentralized operating system"
homepage = "https://aleo.org"
Expand Down Expand Up @@ -37,11 +37,11 @@ version = "0.2.2"

[dependencies.snarkos-profiler]
path = "../profiler"
version = "1.2.0"
version = "1.3.0"

[dependencies.snarkos-storage]
path = "../storage"
version = "1.2.0"
version = "1.3.0"
default-features = false

[dependencies.anyhow]
Expand Down
2 changes: 1 addition & 1 deletion metrics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-metrics"
version = "1.2.0"
version = "1.3.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Metrics for a decentralized operating system"
homepage = "https://aleo.org"
Expand Down
8 changes: 4 additions & 4 deletions network/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-network"
version = "1.2.0"
version = "1.3.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Network for a decentralized operating system"
homepage = "https://aleo.org"
Expand Down Expand Up @@ -31,15 +31,15 @@ version = "0.2.2"

[dependencies.snarkos-consensus]
path = "../consensus"
version = "1.2.0"
version = "1.3.0"

[dependencies.snarkos-metrics]
path = "../metrics"
version = "1.2.0"
version = "1.3.0"

[dependencies.snarkos-storage]
path = "../storage"
version = "1.2.0"
version = "1.3.0"

[dependencies.anyhow]
version = "1.0"
Expand Down
7 changes: 2 additions & 5 deletions parameters/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-parameters"
version = "1.2.0"
version = "1.3.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Parameters for a decentralized operating system"
homepage = "https://aleo.org"
Expand Down Expand Up @@ -72,8 +72,5 @@ version = "0.11.1"
version = "0.8"

[features]
default = [
"remote",
"snarkvm-algorithms/default",
]
default = [ "remote", "snarkvm-algorithms/default" ]
remote = [ "curl" ]
2 changes: 1 addition & 1 deletion profiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-profiler"
version = "1.2.0"
version = "1.3.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Profiler for a decentralized operating system"
homepage = "https://aleo.org"
Expand Down
10 changes: 5 additions & 5 deletions rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-rpc"
version = "1.2.0"
version = "1.3.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "RPC for a decentralized operating system"
homepage = "https://aleo.org"
Expand Down Expand Up @@ -32,19 +32,19 @@ version = "0.2.2"

[dependencies.snarkos-consensus]
path = "../consensus"
version = "1.2.0"
version = "1.3.0"

[dependencies.snarkos-network]
path = "../network"
version = "1.2.0"
version = "1.3.0"

[dependencies.snarkos-storage]
path = "../storage"
version = "1.2.0"
version = "1.3.0"

[dependencies.snarkos-toolkit]
path = "../toolkit"
version = "1.2.0"
version = "1.3.0"

[dependencies.anyhow]
version = "1.0.40"
Expand Down
10 changes: 5 additions & 5 deletions storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-storage"
version = "1.2.0"
version = "1.3.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Storage for a decentralized operating system"
homepage = "https://aleo.org"
Expand All @@ -18,9 +18,9 @@ license = "GPL-3.0"
edition = "2018"

[features]
default = ["rocksdb_storage"]
rocksdb_storage = ["rocksdb"]
mem_storage = []
default = [ "rocksdb_storage" ]
rocksdb_storage = [ "rocksdb" ]
mem_storage = [ ]

[dependencies.snarkvm-algorithms]
version = "0.2.2"
Expand All @@ -39,7 +39,7 @@ version = "0.2.2"

[dependencies.snarkos-parameters]
path = "../parameters"
version = "1.2.0"
version = "1.3.0"

[dependencies.anyhow]
version = "1.0.40"
Expand Down
21 changes: 14 additions & 7 deletions testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-testing"
version = "1.2.0"
version = "1.3.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Testing suite for a decentralized operating system"
homepage = "https://aleo.org"
Expand All @@ -18,8 +18,15 @@ license = "GPL-3.0"
edition = "2018"

[features]
default = ["network"]
network = ["snarkos-network", "snow", "tokio", "tracing", "tracing-futures", "tracing-subscriber"]
default = [ "network" ]
network = [
"snarkos-network",
"snow",
"tokio",
"tracing",
"tracing-futures",
"tracing-subscriber"
]

[dependencies.snarkvm-algorithms]
version = "0.2.2"
Expand All @@ -44,20 +51,20 @@ version = "0.2.2"

[dependencies.snarkos-consensus]
path = "../consensus"
version = "1.2.0"
version = "1.3.0"

[dependencies.snarkos-network]
path = "../network"
version = "1.2.0"
version = "1.3.0"
optional = true

[dependencies.snarkos-parameters]
path = "../parameters"
version = "1.2.0"
version = "1.3.0"

[dependencies.snarkos-storage]
path = "../storage"
version = "1.2.0"
version = "1.3.0"
default-features = false

[dependencies.anyhow]
Expand Down
Loading

0 comments on commit a68cd9b

Please sign in to comment.