Skip to content

Commit 616892e

Browse files
committed
incremented crate versions to 0.10.1 and updated changelog
1 parent be61c26 commit 616892e

File tree

11 files changed

+22
-19
lines changed

11 files changed

+22
-19
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 0.10.1 (2024-10-30)
4+
- Fixed partition hashing and add logging to aux trace building (#338).
5+
36
## 0.10.0 (2024-10-25)
47
- [BREAKING] Refactored maybe-async macro into simpler maybe-async and maybe-await macros (#283).
58
- [BREAKING] Introduce `VectorCommitment` abstraction (#285).

air/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "winter-air"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
description = "AIR components for the Winterfell STARK prover/verifier"
55
authors = ["winterfell contributors"]
66
readme = "README.md"
77
license = "MIT"
88
repository = "https://github.com/novifinancial/winterfell"
9-
documentation = "https://docs.rs/winter-air/0.10.0"
9+
documentation = "https://docs.rs/winter-air/0.10.1"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["crypto", "arithmetization", "air"]
1212
edition = "2021"

crypto/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "winter-crypto"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
description = "Cryptographic library for the Winterfell STARK prover/verifier"
55
authors = ["winterfell contributors"]
66
readme = "README.md"
77
license = "MIT"
88
repository = "https://github.com/novifinancial/winterfell"
9-
documentation = "https://docs.rs/winter-crypto/0.10.0"
9+
documentation = "https://docs.rs/winter-crypto/0.10.1"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["crypto", "merkle-tree", "hash"]
1212
edition = "2021"

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "examples"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
description = "Examples of using Winterfell STARK prover/verifier"
55
authors = ["winterfell contributors"]
66
readme = "README.md"

fri/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "winter-fri"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
description = "Implementation of FRI protocol for the Winterfell STARK prover/verifier"
55
authors = ["winterfell contributors"]
66
readme = "README.md"
77
license = "MIT"
88
repository = "https://github.com/novifinancial/winterfell"
9-
documentation = "https://docs.rs/winter-fri/0.10.0"
9+
documentation = "https://docs.rs/winter-fri/0.10.1"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["crypto", "polynomial", "commitments"]
1212
edition = "2021"

math/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "winter-math"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
description = "Math library for the Winterfell STARK prover/verifier"
55
authors = ["winterfell contributors"]
66
readme = "README.md"
77
license = "MIT"
88
repository = "https://github.com/novifinancial/winterfell"
9-
documentation = "https://docs.rs/winter-math/0.10.0"
9+
documentation = "https://docs.rs/winter-math/0.10.1"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["crypto", "finite-fields", "polynomials", "fft"]
1212
edition = "2021"

prover/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "winter-prover"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
description = "Winterfell STARK prover"
55
authors = ["winterfell contributors"]
66
readme = "README.md"
77
license = "MIT"
88
repository = "https://github.com/novifinancial/winterfell"
9-
documentation = "https://docs.rs/winter-prover/0.10.0"
9+
documentation = "https://docs.rs/winter-prover/0.10.1"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["crypto", "zkp", "stark", "prover"]
1212
edition = "2021"

utils/core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "winter-utils"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
description = "Utilities for the Winterfell STARK prover/verifier"
55
authors = ["winterfell contributors"]
66
readme = "README.md"
77
license = "MIT"
88
repository = "https://github.com/novifinancial/winterfell"
9-
documentation = "https://docs.rs/winter-utils/0.10.0"
9+
documentation = "https://docs.rs/winter-utils/0.10.1"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["serialization", "transmute"]
1212
edition = "2021"

utils/rand/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "winter-rand-utils"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
description = "Random value generation utilities for Winterfell crates"
55
authors = ["winterfell contributors"]
66
readme = "README.md"
77
license = "MIT"
88
repository = "https://github.com/novifinancial/winterfell"
9-
documentation = "https://docs.rs/winter-rand-utils/0.10.0"
9+
documentation = "https://docs.rs/winter-rand-utils/0.10.1"
1010
categories = ["cryptography"]
1111
keywords = ["rand"]
1212
edition = "2021"

verifier/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "winter-verifier"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
description = "Winterfell STARK verifier"
55
authors = ["winterfell contributors"]
66
readme = "README.md"
77
license = "MIT"
88
repository = "https://github.com/novifinancial/winterfell"
9-
documentation = "https://docs.rs/winter-verifier/0.10.0"
9+
documentation = "https://docs.rs/winter-verifier/0.10.1"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["crypto", "zkp", "stark", "verifier"]
1212
edition = "2021"

winterfell/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "winterfell"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
description = "Winterfell STARK prover and verifier"
55
authors = ["winterfell contributors"]
66
readme = "../README.md"
77
license = "MIT"
88
repository = "https://github.com/novifinancial/winterfell"
9-
documentation = "https://docs.rs/winterfell/0.10.0"
9+
documentation = "https://docs.rs/winterfell/0.10.1"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["crypto", "zkp", "stark", "prover", "verifier"]
1212
edition = "2021"

0 commit comments

Comments
 (0)