-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(snarkos): bump version for new release
- Loading branch information
Showing
13 changed files
with
68 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v1.2.0 | ||
v1.3.0 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
||
|
@@ -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" | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -72,8 +72,5 @@ version = "0.11.1" | |
version = "0.8" | ||
|
||
[features] | ||
default = [ | ||
"remote", | ||
"snarkvm-algorithms/default", | ||
] | ||
default = [ "remote", "snarkvm-algorithms/default" ] | ||
remote = [ "curl" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
@@ -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] | ||
|
Oops, something went wrong.