Skip to content

Commit

Permalink
Prepare release 0.4.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
mmagician committed Nov 13, 2022
1 parent f6df807 commit 40dec5d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 17 deletions.
8 changes: 0 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,3 @@ lto = "thin"
incremental = true
debug-assertions = true
debug = true

[patch.crates-io]
ark-ff = { git = "https://github.com/arkworks-rs/algebra" }
ark-ec = { git = "https://github.com/arkworks-rs/algebra" }
ark-test-curves = { git = "https://github.com/arkworks-rs/algebra" }
ark-std = { git = "https://github.com/arkworks-rs/std" }
ark-serialize = { git = "https://github.com/arkworks-rs/algebra" }
ark-poly = { git = "https://github.com/arkworks-rs/algebra" }
8 changes: 4 additions & 4 deletions relations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark-relations"
version = "0.3.0"
version = "0.4.0-alpha.1"
authors = [ "arkworks constributors" ]
description = "A library for rank-one constraint systems"
homepage = "https://arkworks.rs"
Expand All @@ -13,13 +13,13 @@ license = "MIT/Apache-2.0"
edition = "2021"

[dependencies]
ark-ff = { version = "^0.3.0", default-features = false }
ark-std = { version = "^0.3.0", default-features = false }
ark-ff = { version = "0.4.0-alpha", default-features = false }
ark-std = { version = "0.4.0-alpha", default-features = false }
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.2", default-features = false, optional = true }

[dev-dependencies]
ark-test-curves = { version = "^0.3.0", default-features = false, features = [ "bls12_381_scalar_field" ] }
ark-test-curves = { version = "0.4.0-alpha", default-features = false, features = [ "bls12_381_scalar_field" ] }

[features]
default = []
Expand Down
10 changes: 5 additions & 5 deletions snark/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark-snark"
version = "0.3.0"
version = "0.4.0-alpha.1"
authors = [ "arkworks contributors" ]
description = "A library for SNARK traits"
homepage = "https://arkworks.rs"
Expand All @@ -13,7 +13,7 @@ license = "MIT/Apache-2.0"
edition = "2021"

[dependencies]
ark-ff = { version = "^0.3.0", default-features = false }
ark-std = { version = "^0.3.0", default-features = false }
ark-serialize = { version = "^0.3.0", default-features = false }
ark-relations = { version = "^0.3.0", path = "../relations", default-features = false }
ark-ff = { version = "0.4.0-alpha", default-features = false }
ark-std = { version = "0.4.0-alpha", default-features = false }
ark-serialize = { version = "0.4.0-alpha", default-features = false }
ark-relations = { version = "0.4.0-alpha", path = "../relations", default-features = false }

0 comments on commit 40dec5d

Please sign in to comment.