Skip to content

Commit fed6b00

Browse files
authored
Merge pull request #835 from zcash/halo2_poseidon-0.1.0
halo2_poseidon 0.1.0
2 parents e374954 + 3bb6f5c commit fed6b00

File tree

5 files changed

+24
-6
lines changed

5 files changed

+24
-6
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

halo2_gadgets/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to Rust's notion of
77

88
## [Unreleased]
99

10+
## [0.3.1] - 2024-12-16
11+
- `halo2_gadgets::poseidon::primitives` is now a re-export of the new `halo2_poseidon`
12+
crate.
13+
- `halo2_gadgets::sinsemilla::primitives` is now a re-export of the new `sinsemilla`
14+
crate.
15+
1016
## [0.3.0] - 2023-03-21
1117
### Added
1218
- `halo2_gadgets::poseidon::primitives::{Mds, generate_constants}`

halo2_gadgets/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "halo2_gadgets"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = [
55
"Sean Bowe <[email protected]>",
66
"Jack Grigg <[email protected]>",
@@ -26,7 +26,7 @@ arrayvec = "0.7.0"
2626
bitvec = "1"
2727
ff = "0.13"
2828
group = "0.13"
29-
halo2_poseidon = { version = "0.0", path = "../halo2_poseidon", default-features = false }
29+
halo2_poseidon = { version = "0.1", path = "../halo2_poseidon", default-features = false }
3030
halo2_proofs = { version = "0.3", path = "../halo2_proofs", default-features = false }
3131
lazy_static = "1"
3232
pasta_curves = "0.5"
@@ -41,7 +41,7 @@ plotters = { version = "0.3.0", default-features = false, optional = true }
4141

4242
[dev-dependencies]
4343
criterion = "0.3"
44-
halo2_poseidon = { version = "0.0", path = "../halo2_poseidon", default-features = false, features = ["test-dependencies"] }
44+
halo2_poseidon = { version = "0.1", path = "../halo2_poseidon", default-features = false, features = ["test-dependencies"] }
4545
proptest = "1.0.0"
4646
sinsemilla = { version = "0.1", features = ["test-dependencies"] }
4747

halo2_poseidon/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to Rust's notion of
6+
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.1.0] - 2024-12-16
11+
Initial release, extracted from `halo2_gadgets 0.3.0`. Includes minor changes
12+
for `no-std` support.

halo2_poseidon/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "halo2_poseidon"
3-
version = "0.0.0"
3+
version = "0.1.0"
44
authors = [
55
"Jack Grigg <[email protected]>",
66
"Daira Emma Hopwood <[email protected]>",

0 commit comments

Comments
 (0)