Skip to content

Commit

Permalink
chore: new poseidon-parameters, poseidon-permutation, poseidon377
Browse files Browse the repository at this point in the history
  • Loading branch information
redshiftzero committed Jul 2, 2024
1 parent 63cfd05 commit 91b2066
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 8 deletions.
6 changes: 5 additions & 1 deletion poseidon-parameters/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,8 @@

# 1.0.0

* Remove Arkworks requirement
* Remove Arkworks requirement

# 1.1.0

* Update version of `decaf377`.
2 changes: 1 addition & 1 deletion poseidon-parameters/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poseidon-parameters"
version = "1.0.0"
version = "1.1.0"
edition = "2018"
authors = []
description = "A crate for Poseidon parameters"
Expand Down
6 changes: 5 additions & 1 deletion poseidon-permutation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,8 @@

# 1.0.0

* Remove Arkworks requirement
* Remove Arkworks requirement

# 1.1.0

* Update version of `decaf377`.
4 changes: 2 additions & 2 deletions poseidon-permutation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poseidon-permutation"
version = "1.0.0"
version = "1.1.0"
edition = "2018"
authors = ["Penumbra <[email protected]>", "redshiftzero <[email protected]>"]
description = "An instantiation of the Poseidon permutation for decaf377"
Expand All @@ -14,7 +14,7 @@ ark-std = { version = "^0.4.0", default-features = false, optional=true }
ark-r1cs-std = {version = "0.4", default-features = false, optional=true }
ark-relations = { version="0.4", default-features = false, optional=true }

poseidon-parameters = { path = "../poseidon-parameters", default-features = false, version = "1.0" }
poseidon-parameters = { path = "../poseidon-parameters", default-features = false, version = "1.1" }

[features]
default = ["std"]
Expand Down
4 changes: 4 additions & 0 deletions poseidon377/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@
# 1.1.0

* Add `u32_backend` feature.

# 1.2.0

* Update version of `decaf377`.
6 changes: 3 additions & 3 deletions poseidon377/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poseidon377"
version = "1.1.0"
version = "1.2.0"
edition = "2018"
authors = [
"Penumbra <[email protected]>",
Expand All @@ -12,8 +12,8 @@ repository = "https://github.com/penumbra-zone/poseidon377"

[dependencies]
decaf377 = { version = "0.10.1", default-features = false }
poseidon-parameters = { version = "1.0", path = "../poseidon-parameters", default-features = false }
poseidon-permutation = { version = "1.0", path = "../poseidon-permutation", default-features = false }
poseidon-parameters = { version = "1.1", path = "../poseidon-parameters", default-features = false }
poseidon-permutation = { version = "1.1", path = "../poseidon-permutation", default-features = false }

ark-ff = { version = "0.4", default-features = false, optional = true }
ark-groth16 = { version = "0.4", default-features = false, optional = true }
Expand Down

0 comments on commit 91b2066

Please sign in to comment.