Skip to content

Commit 6f309fa

Browse files
mmagiciangithub-actions[bot]github-actions
authored
Merge release changes into master (#621)
* chore: Release (#568) Co-authored-by: github-actions <github-actions@github.com> * chore: Release (#581) + update dependencies * temp remove cyclic dev-dependencies * Revert "temp remove cyclic dev-dependencies" This reverts commit 0944c9b. * chore: Release (#608) Co-authored-by: github-actions <github-actions@github.com> * chore: Release (#614) Co-authored-by: github-actions <github-actions@github.com> * Cleanup the changelog * chore: Release (#620) Co-authored-by: github-actions <github-actions@github.com> * Use version 0.4.2 in deps * fmt changelog --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions <github-actions@github.com>
1 parent b71caec commit 6f309fa

11 files changed

Lines changed: 55 additions & 34 deletions

File tree

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,36 @@
22

33
## Pending
44

5-
- (`ark-poly`) Reduce the number of field multiplications performed by `SparseMultilinearExtension::evaluate` and `DenseMultilinearExtension::evaluate`
5+
### Breaking changes
6+
7+
### Features
8+
9+
### Improvements
10+
11+
### Bugfixes
12+
13+
## v0.4.2
14+
15+
### Breaking changes
16+
17+
### Features
18+
19+
### Improvements
20+
21+
### Bugfixes
22+
623
- [\#610](https://github.com/arkworks-rs/algebra/pull/610) (`ark-ec`) Fix panic in `final_exponentiation` step for MNT4/6 curves if inverse does not exist.
724

25+
## v0.4.1
26+
827
### Breaking changes
928

1029
### Features
1130

1231
### Improvements
1332

33+
- [\#603](https://github.com/arkworks-rs/algebra/pull/603) (`ark-poly`) Reduce the number of field multiplications performed by `SparseMultilinearExtension::evaluate` and `DenseMultilinearExtension::evaluate`
34+
1435
### Bugfixes
1536

1637
## v0.4.0

bench-templates/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ark-algebra-bench-templates"
3-
version = "0.4.0"
3+
version = "0.4.2"
44
authors = [ "arkworks contributors" ]
55
description = "A benchmark library for finite fields and elliptic curves"
66
homepage = "https://arkworks.rs"
@@ -18,9 +18,9 @@ rust-version = "1.63"
1818
[dependencies]
1919
criterion = { version = "0.4.0", features = [ "html_reports" ] }
2020
ark-std = { version = "0.4.0", default-features = false }
21-
ark-ec = { version = "0.4.0", path = "../ec", default-features = false }
22-
ark-ff = { version = "0.4.0", path = "../ff", default-features = false }
23-
ark-serialize = { version = "0.4.0", path = "../serialize", default-features = false }
21+
ark-ec = { version = "0.4.2", path = "../ec", default-features = false }
22+
ark-ff = { version = "0.4.2", path = "../ff", default-features = false }
23+
ark-serialize = { version = "0.4.2", path = "../serialize", default-features = false }
2424
paste = { version = "1.0" }
2525

2626
[features]

ec/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ark-ec"
3-
version = "0.4.0"
3+
version = "0.4.2"
44
authors = [ "arkworks contributors" ]
55
description = "A library for elliptic curves and pairings"
66
homepage = "https://arkworks.rs"
@@ -15,9 +15,9 @@ rust-version = "1.63"
1515

1616
[dependencies]
1717
ark-std = { version = "0.4.0", default-features = false }
18-
ark-serialize = { version = "0.4.0", path = "../serialize", default-features = false }
19-
ark-ff = { version = "0.4.0", path = "../ff", default-features = false }
20-
ark-poly = { version = "0.4.0", path = "../poly", default-features = false }
18+
ark-serialize = { version = "0.4.2", path = "../serialize", default-features = false }
19+
ark-ff = { version = "0.4.2", path = "../ff", default-features = false }
20+
ark-poly = { version = "0.4.2", path = "../poly", default-features = false }
2121
derivative = { version = "2", features = ["use_core"] }
2222
num-traits = { version = "0.2", default-features = false }
2323
rayon = { version = "1", optional = true }
@@ -26,7 +26,7 @@ hashbrown = "0.13.1"
2626
itertools = { version = "0.10", default-features = false }
2727

2828
[dev-dependencies]
29-
ark-test-curves = { version = "0.4.0", path = "../test-curves", default-features = false, features = ["bls12_381_curve"] }
29+
ark-test-curves = { version = "0.4.2", path = "../test-curves", default-features = false, features = ["bls12_381_curve"] }
3030
sha2 = { version = "0.10", default-features = false }
3131
libtest-mimic = "0.6.0"
3232
serde = "1.0.110"

ff-asm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ark-ff-asm"
3-
version = "0.4.0"
3+
version = "0.4.2"
44
authors = [ "arkworks contributors" ]
55
description = "A library for generating x86-64 assembly for finite field multiplication"
66
homepage = "https://arkworks.rs"

ff-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ark-ff-macros"
3-
version = "0.4.0"
3+
version = "0.4.2"
44
authors = [ "arkworks contributors" ]
55
description = "A library for generating x86-64 assembly for finite field multiplication"
66
homepage = "https://arkworks.rs"

ff/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ark-ff"
3-
version = "0.4.0"
3+
version = "0.4.2"
44
authors = [ "arkworks contributors" ]
55
description = "A library for finite fields"
66
homepage = "https://arkworks.rs"
@@ -14,10 +14,10 @@ edition = "2021"
1414
rust-version = "1.63"
1515

1616
[dependencies]
17-
ark-ff-asm = { version = "0.4.0", path = "../ff-asm" }
18-
ark-ff-macros = { version = "0.4.0", path = "../ff-macros" }
17+
ark-ff-asm = { version = "0.4.2", path = "../ff-asm" }
18+
ark-ff-macros = { version = "0.4.2", path = "../ff-macros" }
1919
ark-std = { version = "0.4.0", default-features = false }
20-
ark-serialize = { version = "0.4.0", path = "../serialize", default-features = false }
20+
ark-serialize = { version = "0.4.2", path = "../serialize", default-features = false }
2121
derivative = { version = "2", features = ["use_core"] }
2222
num-traits = { version = "0.2", default-features = false }
2323
paste = "1.0"
@@ -28,7 +28,7 @@ digest = { version = "0.10", default-features = false, features = ["alloc"] }
2828
itertools = { version = "0.10", default-features = false }
2929

3030
[dev-dependencies]
31-
ark-test-curves = { version = "0.4.0", path = "../test-curves", default-features = false, features = [ "bls12_381_curve", "mnt6_753", "secp256k1"] }
31+
ark-test-curves = { version = "0.4.2", path = "../test-curves", default-features = false, features = [ "bls12_381_curve", "mnt6_753", "secp256k1"] }
3232
blake2 = { version = "0.10", default-features = false }
3333
sha3 = { version = "0.10", default-features = false }
3434
sha2 = { version = "0.10", default-features = false }

poly/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ark-poly"
3-
version = "0.4.0"
3+
version = "0.4.2"
44
authors = [ "arkworks contributors" ]
55
description = "A library for efficient polynomial arithmetic via FFTs over finite fields"
66
homepage = "https://arkworks.rs"
@@ -14,8 +14,8 @@ edition = "2021"
1414
rust-version = "1.63"
1515

1616
[dependencies]
17-
ark-ff = { version = "0.4.0", path = "../ff", default-features = false }
18-
ark-serialize = { version = "0.4.0", path = "../serialize", default-features = false, features = ["derive"] }
17+
ark-ff = { version = "0.4.2", path = "../ff", default-features = false }
18+
ark-serialize = { version = "0.4.2", path = "../serialize", default-features = false, features = ["derive"] }
1919
ark-std = { version = "0.4.0", default-features = false }
2020
rayon = { version = "1", optional = true }
2121
derivative = { version = "2", default-features = false, features = [ "use_core" ] }

serialize-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ark-serialize-derive"
3-
version = "0.4.0"
3+
version = "0.4.2"
44
authors = [ "arkworks Contributors" ]
55
description = "A library for deriving serialization traits for the arkworks ecosystem"
66
homepage = "https://arkworks.rs"

serialize/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ark-serialize"
3-
version = "0.4.0"
3+
version = "0.4.2"
44
authors = [ "arkworks contributors" ]
55
description = "A library for serializing types in the arkworks ecosystem"
66
homepage = "https://arkworks.rs"
@@ -14,7 +14,7 @@ edition = "2021"
1414
rust-version = "1.63"
1515

1616
[dependencies]
17-
ark-serialize-derive = { version = "0.4.0", path = "../serialize-derive", optional = true }
17+
ark-serialize-derive = { version = "0.4.2", path = "../serialize-derive", optional = true }
1818
ark-std = { version = "0.4.0", default-features = false }
1919
digest = { version = "0.10", default-features = false }
2020
num-bigint = { version = "0.4", default-features = false }
@@ -23,7 +23,7 @@ num-bigint = { version = "0.4", default-features = false }
2323
sha2 = { version = "0.10", default-features = false}
2424
sha3 = { version = "0.10", default-features = false}
2525
blake2 = { version = "0.10", default-features = false}
26-
ark-test-curves = { version = "0.4.0", path = "../test-curves", default-features = false, features = [ "bls12_381_curve"] }
26+
ark-test-curves = { version = "0.4.2", path = "../test-curves", default-features = false, features = [ "bls12_381_curve"] }
2727

2828

2929
[features]

test-curves/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ark-test-curves"
3-
version = "0.4.0"
3+
version = "0.4.2"
44
authors = [ "arkworks contributors" ]
55
description = "A library for testing ark-ec & ark-poly"
66
homepage = "https://arkworks.rs"
@@ -15,13 +15,13 @@ rust-version = "1.63"
1515

1616
[dependencies]
1717
ark-std = { version = "0.4.0", default-features = false }
18-
ark-ff = { version = "0.4.0", path = "../ff", default-features = false }
19-
ark-ec = { version = "0.4.0", path = "../ec", default-features = false }
18+
ark-ff = { version = "0.4.2", path = "../ff", default-features = false }
19+
ark-ec = { version = "0.4.2", path = "../ec", default-features = false }
2020

2121
[dev-dependencies]
22-
ark-serialize = { version = "0.4.0", path = "../serialize", default-features = false }
23-
ark-algebra-test-templates = { version = "0.4.0", path = "../test-templates", default-features = false }
24-
ark-algebra-bench-templates = { version = "0.4.0", path = "../bench-templates", default-features = false }
22+
ark-serialize = { version = "0.4.2", path = "../serialize", default-features = false }
23+
ark-algebra-test-templates = { version = "0.4.2", path = "../test-templates", default-features = false }
24+
ark-algebra-bench-templates = { version = "0.4.2", path = "../bench-templates", default-features = false }
2525

2626
[features]
2727
default = []

0 commit comments

Comments
 (0)