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 29, 2021
1 parent 50a6974 commit 4ecef60
Show file tree
Hide file tree
Showing 13 changed files with 44 additions and 44 deletions.
2 changes: 1 addition & 1 deletion .resources/release-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.3.2
v1.3.3
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.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos"
version = "1.3.2"
version = "1.3.3"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "A decentralized operating system"
homepage = "https://aleo.org"
Expand Down Expand Up @@ -62,20 +62,20 @@ version = "0.2.2"

[dependencies.snarkos-consensus]
path = "./consensus"
version = "1.3.2"
version = "1.3.3"

[dependencies.snarkos-network]
path = "./network"
version = "1.3.2"
version = "1.3.3"

[dependencies.snarkos-rpc]
path = "./rpc"
version = "1.3.2"
version = "1.3.3"

[dependencies.snarkos-storage]
path = "./storage"
features = [ "rocksdb_storage" ]
version = "1.3.2"
version = "1.3.3"

[dependencies.anyhow]
version = "1.0"
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.3.2"
version = "1.3.3"
authors = [ "The Aleo Team <hello@aleo.org>" ]
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.3.2"
version = "1.3.3"

[dependencies.snarkos-network]
path = "../network"
version = "1.3.2"
version = "1.3.3"

[dependencies.snarkos-testing]
path = "../testing"
version = "1.3.2"
version = "1.3.3"

[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.3.2"
version = "1.3.3"
authors = [ "The Aleo Team <hello@aleo.org>" ]
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.3.2"
version = "1.3.3"

[dependencies.snarkos-storage]
path = "../storage"
version = "1.3.2"
version = "1.3.3"
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.3.2"
version = "1.3.3"
authors = [ "The Aleo Team <hello@aleo.org>" ]
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.3.2"
version = "1.3.3"
authors = [ "The Aleo Team <hello@aleo.org>" ]
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.3.2"
version = "1.3.3"

[dependencies.snarkos-metrics]
path = "../metrics"
version = "1.3.2"
version = "1.3.3"

[dependencies.snarkos-storage]
path = "../storage"
version = "1.3.2"
version = "1.3.3"

[dependencies.anyhow]
version = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion parameters/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-parameters"
version = "1.3.2"
version = "1.3.3"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "Parameters for a decentralized operating system"
homepage = "https://aleo.org"
Expand Down
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.3.2"
version = "1.3.3"
authors = [ "The Aleo Team <hello@aleo.org>" ]
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.3.2"
version = "1.3.3"
authors = [ "The Aleo Team <hello@aleo.org>" ]
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.3.2"
version = "1.3.3"

[dependencies.snarkos-network]
path = "../network"
version = "1.3.2"
version = "1.3.3"

[dependencies.snarkos-storage]
path = "../storage"
version = "1.3.2"
version = "1.3.3"

[dependencies.snarkos-toolkit]
path = "../toolkit"
version = "1.3.2"
version = "1.3.3"

[dependencies.anyhow]
version = "1.0.40"
Expand Down
4 changes: 2 additions & 2 deletions storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-storage"
version = "1.3.2"
version = "1.3.3"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "Storage for a decentralized operating system"
homepage = "https://aleo.org"
Expand Down Expand Up @@ -39,7 +39,7 @@ version = "0.2.2"

[dependencies.snarkos-parameters]
path = "../parameters"
version = "1.3.2"
version = "1.3.3"

[dependencies.anyhow]
version = "1.0.40"
Expand Down
10 changes: 5 additions & 5 deletions testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-testing"
version = "1.3.2"
version = "1.3.3"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "Testing suite for a decentralized operating system"
homepage = "https://aleo.org"
Expand Down Expand Up @@ -51,20 +51,20 @@ version = "0.2.2"

[dependencies.snarkos-consensus]
path = "../consensus"
version = "1.3.2"
version = "1.3.3"

[dependencies.snarkos-network]
path = "../network"
version = "1.3.2"
version = "1.3.3"
optional = true

[dependencies.snarkos-parameters]
path = "../parameters"
version = "1.3.2"
version = "1.3.3"

[dependencies.snarkos-storage]
path = "../storage"
version = "1.3.2"
version = "1.3.3"
default-features = false

[dependencies.anyhow]
Expand Down
2 changes: 1 addition & 1 deletion toolkit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snarkos-toolkit"
version = "1.3.2"
version = "1.3.3"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "A developer toolkit for a decentralized operating system"
homepage = "https://aleo.org"
Expand Down

0 comments on commit 4ecef60

Please sign in to comment.