From f9a137cfcb548a53d6a481cd9efd0b71fd2c5eeb Mon Sep 17 00:00:00 2001
From: Weikeng Chen <w.k@berkeley.edu>
Date: Wed, 24 Mar 2021 21:58:16 -0700
Subject: [PATCH] Release v0.2.0 PR (#75)

---
 Cargo.toml | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index aaca66b..f24f905 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "ark-poly-commit"
-version = "0.1.0"
+version = "0.2.0"
 authors = [
   "Alessandro Chiesa <alexch@berkeley.edu>",
   "Mary Maller <mary.maller.15@ucl.ac.uk>",
@@ -21,15 +21,15 @@ license = "MIT/Apache-2.0"
 edition = "2018"
 
 [dependencies]
-ark-serialize = { git = "https://github.com/arkworks-rs/algebra", default-features = false, features = [ "derive" ] }
-ark-ff = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
-ark-ec = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
-ark-poly = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
+ark-serialize = { version = "^0.2.0", default-features = false, features = [ "derive" ] }
+ark-ff = { version = "^0.2.0", default-features = false }
+ark-ec = { version = "^0.2.0", default-features = false }
+ark-poly = {version = "^0.2.0", default-features = false }
 
-ark-std = { git = "https://github.com/arkworks-rs/utils", default-features = false }
-ark-relations = { git = "https://github.com/arkworks-rs/snark", default-features = false, optional = true }
-ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std", default-features = false, optional = true }
-ark-nonnative-field = { git = "https://github.com/arkworks-rs/nonnative", default-features = false, optional = true }
+ark-std = { version = "^0.2.0", default-features = false }
+ark-relations = { version = "^0.2.0", default-features = false, optional = true }
+ark-r1cs-std = { version = "^0.2.0", default-features = false, optional = true }
+ark-nonnative-field = { version = "^0.2.0", default-features = false, optional = true }
 hashbrown = { version = "0.9", optional = true }
 
 digest = "0.9"
@@ -39,9 +39,9 @@ derivative = { version = "2", features = [ "use_core" ] }
 tracing = { version = "0.1", default-features = false, features = [ "attributes" ] }
 
 [dev-dependencies]
-ark-ed-on-bls12-381 = { git = "https://github.com/arkworks-rs/curves", default-features = false }
-ark-bls12-381 = { git = "https://github.com/arkworks-rs/curves", default-features = false, features = [ "curve" ] }
-ark-bls12-377 = { git = "https://github.com/arkworks-rs/curves", default-features = false, features = [ "curve" ] }
+ark-ed-on-bls12-381 = { version = "^0.2.0", default-features = false }
+ark-bls12-381 = { version = "^0.2.0", default-features = false, features = [ "curve" ] }
+ark-bls12-377 = { version = "^0.2.0", default-features = false, features = [ "curve" ] }
 blake2 = { version = "0.9", default-features = false }
 
 [profile.release]
-- 
GitLab