forked from ProvableHQ/snarkVM
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(snarkvm): bump version for new release
- Loading branch information
Showing
18 changed files
with
110 additions
and
112 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,6 +1,6 @@ | ||
[package] | ||
name = "snarkvm-integration" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Integration testing for DPC" | ||
homepage = "https://aleo.org" | ||
|
@@ -19,40 +19,40 @@ edition = "2018" | |
|
||
[dependencies.snarkvm-algorithms] | ||
path = "../algorithms" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
|
||
[dependencies.snarkvm-curves] | ||
path = "../curves" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
|
||
[dependencies.snarkvm-dpc] | ||
path = "../dpc" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
|
||
[dependencies.snarkvm-fields] | ||
path = "../fields" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
|
||
[dependencies.snarkvm-gadgets] | ||
path = "../gadgets" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
|
||
[dependencies.snarkvm-parameters] | ||
path = "../parameters" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
|
||
[dependencies.snarkvm-profiler] | ||
path = "../profiler" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.snarkvm-r1cs] | ||
path = "../r1cs" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
|
||
[dependencies.snarkvm-utilities] | ||
path = "../utilities" | ||
version = "0.4.0" | ||
version = "0.5.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 +1 @@ | ||
v0.4.0 | ||
v0.5.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 = "snarkvm" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "A decentralized virtual machine" | ||
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 = "snarkvm-algorithms" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Algorithms for a decentralized virtual machine" | ||
homepage = "https://aleo.org" | ||
|
@@ -58,27 +58,27 @@ path = "examples/snark/gm17.rs" | |
|
||
[dependencies.snarkvm-curves] | ||
path = "../curves" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.snarkvm-fields] | ||
path = "../fields" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.snarkvm-profiler] | ||
path = "../profiler" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.snarkvm-r1cs] | ||
path = "../r1cs" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.snarkvm-utilities] | ||
path = "../utilities" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.blake2] | ||
|
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 = "snarkvm-curves" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Curves for a decentralized virtual machine" | ||
homepage = "https://aleo.org" | ||
|
@@ -24,12 +24,12 @@ harness = false | |
|
||
[dependencies.snarkvm-fields] | ||
path = "../fields" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.snarkvm-utilities] | ||
path = "../utilities" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.derivative] | ||
|
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 = "snarkvm-derives" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Canonical serialization for a decentralized virtual machine" | ||
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 = "snarkvm-dpc" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "DPC for a decentralized virtual machine" | ||
homepage = "https://aleo.org" | ||
|
@@ -19,43 +19,43 @@ edition = "2018" | |
|
||
[dependencies.snarkvm-algorithms] | ||
path = "../algorithms" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.snarkvm-curves] | ||
path = "../curves" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.snarkvm-fields] | ||
path = "../fields" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.snarkvm-gadgets] | ||
path = "../gadgets" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.snarkvm-parameters] | ||
path = "../parameters" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.snarkvm-profiler] | ||
path = "../profiler" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.snarkvm-r1cs] | ||
path = "../r1cs" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
optional = true | ||
|
||
[dependencies.snarkvm-utilities] | ||
path = "../utilities" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.anyhow] | ||
|
@@ -116,6 +116,5 @@ default = [ | |
"snarkvm-utilities/default" | ||
] | ||
print-trace = [ "snarkvm-profiler/print-trace" ] | ||
|
||
full = ["testnet1"] | ||
testnet1 = ["snarkvm-r1cs"] | ||
full = [ "testnet1" ] | ||
testnet1 = [ "snarkvm-r1cs" ] |
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 = "snarkvm-fields" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Fields for a decentralized virtual machine" | ||
homepage = "https://aleo.org" | ||
|
@@ -19,7 +19,7 @@ edition = "2018" | |
|
||
[dependencies.snarkvm-utilities] | ||
path = "../utilities" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
default-features = false | ||
|
||
[dependencies.bincode] | ||
|
Oops, something went wrong.