Skip to content

Commit

Permalink
Merge pull request #119 from novifinancial/v0.4.2-prep
Browse files Browse the repository at this point in the history
Update crate version to v0.4.2
  • Loading branch information
irakliyk committed Nov 14, 2022
2 parents edd1f6d + 67328b0 commit 08b5831
Show file tree
Hide file tree
Showing 11 changed files with 52 additions and 49 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 0.4.2 (2022-11-14)
* Removed most exponentiations from the constraint evaluation step for the Prover.

## 0.4.1 (2022-10-24)
* Increased transition constraint exemption limit by 1.
* Implemented custom doubling for `f64` and `f62` field.
Expand Down
14 changes: 7 additions & 7 deletions air/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winter-air"
version = "0.4.1"
version = "0.4.2"
description = "AIR components for the Winterfell STARK prover/verifier"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
documentation = "https://docs.rs/winter-air/0.4.1"
documentation = "https://docs.rs/winter-air/0.4.2"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "arithmetization", "air"]
edition = "2021"
Expand All @@ -20,13 +20,13 @@ default = ["std"]
std = ["crypto/std", "fri/std", "math/std", "utils/std"]

[dependencies]
crypto = { version = "0.4.1", path = "../crypto", package = "winter-crypto", default-features = false }
fri = { version = "0.4.1", path = "../fri", package = "winter-fri", default-features = false }
math = { version = "0.4.1", path = "../math", package = "winter-math", default-features = false }
utils = { version = "0.4.1", path = "../utils/core", package = "winter-utils", default-features = false }
crypto = { version = "0.4.2", path = "../crypto", package = "winter-crypto", default-features = false }
fri = { version = "0.4.2", path = "../fri", package = "winter-fri", default-features = false }
math = { version = "0.4.2", path = "../math", package = "winter-math", default-features = false }
utils = { version = "0.4.2", path = "../utils/core", package = "winter-utils", default-features = false }

[dev-dependencies]
rand-utils = { version = "0.4.1", path = "../utils/rand", package = "winter-rand-utils" }
rand-utils = { version = "0.4.2", path = "../utils/rand", package = "winter-rand-utils" }

# Allow math in docs
[package.metadata.docs.rs]
Expand Down
10 changes: 5 additions & 5 deletions crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winter-crypto"
version = "0.4.1"
version = "0.4.2"
description = "Cryptographic library for the Winterfell STARK prover/verifier"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
documentation = "https://docs.rs/winter-crypto/0.4.1"
documentation = "https://docs.rs/winter-crypto/0.4.2"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "merkle-tree", "hash"]
edition = "2021"
Expand All @@ -31,11 +31,11 @@ std = ["blake3/std", "math/std", "sha3/std", "utils/std"]

[dependencies]
blake3 = { version = "1.0", default-features = false }
math = { version = "0.4.1", path = "../math", package = "winter-math", default-features = false }
math = { version = "0.4.2", path = "../math", package = "winter-math", default-features = false }
sha3 = { version = "0.10", default-features = false }
utils = { version = "0.4.1", path = "../utils/core", package = "winter-utils", default-features = false }
utils = { version = "0.4.2", path = "../utils/core", package = "winter-utils", default-features = false }

[dev-dependencies]
criterion = "0.4"
proptest = "1.0"
rand-utils = { version = "0.4.1", path = "../utils/rand", package = "winter-rand-utils" }
rand-utils = { version = "0.4.2", path = "../utils/rand", package = "winter-rand-utils" }
8 changes: 4 additions & 4 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "examples"
version = "0.4.1"
version = "0.4.2"
description = "Examples of using Winterfell STARK prover/verifier"
authors = ["winterfell contributors"]
readme = "README.md"
Expand All @@ -26,9 +26,9 @@ default = ["std"]
std = ["hex/std", "winterfell/std", "core-utils/std", "rand-utils"]

[dependencies]
winterfell = { version="0.4.1", path = "../winterfell", default-features = false }
core-utils = { version = "0.4.1", path = "../utils/core", package = "winter-utils", default-features = false }
rand-utils = { version = "0.4.1", path = "../utils/rand", package = "winter-rand-utils", optional = true }
winterfell = { version="0.4.2", path = "../winterfell", default-features = false }
core-utils = { version = "0.4.2", path = "../utils/core", package = "winter-utils", default-features = false }
rand-utils = { version = "0.4.2", path = "../utils/rand", package = "winter-rand-utils", optional = true }
hex = { version = "0.4", optional = true }
log = { version = "0.4", default-features = false }
blake3 = { version = "1.0", default-features = false }
Expand Down
12 changes: 6 additions & 6 deletions fri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winter-fri"
version = "0.4.1"
version = "0.4.2"
description = "Implementation of FRI protocol for the Winterfell STARK prover/verifier"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
documentation = "https://docs.rs/winter-fri/0.4.1"
documentation = "https://docs.rs/winter-fri/0.4.2"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "polynomial", "commitments"]
edition = "2021"
Expand All @@ -29,10 +29,10 @@ default = ["std"]
std = ["crypto/std", "math/std", "utils/std"]

[dependencies]
crypto = { version = "0.4.1", path = "../crypto", package = "winter-crypto", default-features = false }
math = { version = "0.4.1", path = "../math", package = "winter-math", default-features = false }
utils = { version = "0.4.1", path = "../utils/core", package = "winter-utils", default-features = false }
crypto = { version = "0.4.2", path = "../crypto", package = "winter-crypto", default-features = false }
math = { version = "0.4.2", path = "../math", package = "winter-math", default-features = false }
utils = { version = "0.4.2", path = "../utils/core", package = "winter-utils", default-features = false }

[dev-dependencies]
criterion = "0.4"
rand-utils = { version = "0.4.1", path = "../utils/rand", package = "winter-rand-utils" }
rand-utils = { version = "0.4.2", path = "../utils/rand", package = "winter-rand-utils" }
8 changes: 4 additions & 4 deletions math/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winter-math"
version = "0.4.1"
version = "0.4.2"
description = "Math library for the Winterfell STARK prover/verifier"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
documentation = "https://docs.rs/winter-math/0.4.1"
documentation = "https://docs.rs/winter-math/0.4.2"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "finite-fields", "polynomials", "fft"]
edition = "2021"
Expand All @@ -33,13 +33,13 @@ default = ["std"]
std = ["utils/std"]

[dependencies]
utils = { version = "0.4.1", path = "../utils/core", package = "winter-utils", default-features = false }
utils = { version = "0.4.2", path = "../utils/core", package = "winter-utils", default-features = false }

[dev-dependencies]
criterion = "0.4"
num-bigint = "0.4"
proptest = "1.0"
rand-utils = { version = "0.4", path = "../utils/rand", package = "winter-rand-utils" }
rand-utils = { version = "0.4.2", path = "../utils/rand", package = "winter-rand-utils" }

# Allow math in docs
[package.metadata.docs.rs]
Expand Down
14 changes: 7 additions & 7 deletions prover/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winter-prover"
version = "0.4.1"
version = "0.4.2"
description = "Winterfell STARK prover"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
documentation = "https://docs.rs/winter-prover/0.4.1"
documentation = "https://docs.rs/winter-prover/0.4.2"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "zkp", "stark", "prover"]
edition = "2021"
Expand All @@ -21,12 +21,12 @@ default = ["std"]
std = ["air/std", "crypto/std", "fri/std", "math/std", "utils/std"]

[dependencies]
air = { version = "0.4.1", path = "../air", package = "winter-air", default-features = false }
crypto = { version = "0.4.1", path = "../crypto", package = "winter-crypto", default-features = false }
fri = { version = "0.4.1", path = '../fri', package = "winter-fri", default-features = false }
air = { version = "0.4.2", path = "../air", package = "winter-air", default-features = false }
crypto = { version = "0.4.2", path = "../crypto", package = "winter-crypto", default-features = false }
fri = { version = "0.4.2", path = '../fri', package = "winter-fri", default-features = false }
log = { version = "0.4", default-features = false }
math = { version = "0.4.1", path = "../math", package = "winter-math", default-features = false }
utils = { version = "0.4.1", path = "../utils/core", package = "winter-utils", default-features = false }
math = { version = "0.4.2", path = "../math", package = "winter-math", default-features = false }
utils = { version = "0.4.2", path = "../utils/core", package = "winter-utils", default-features = false }

# Allow math in docs
[package.metadata.docs.rs]
Expand Down
4 changes: 2 additions & 2 deletions utils/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winter-utils"
version = "0.4.1"
version = "0.4.2"
description = "Utilities for the Winterfell STARK prover/verifier"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
documentation = "https://docs.rs/winter-utils/0.4.1"
documentation = "https://docs.rs/winter-utils/0.4.2"
categories = ["cryptography", "no-std"]
keywords = ["serialization", "transmute"]
edition = "2021"
Expand Down
6 changes: 3 additions & 3 deletions utils/rand/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winter-rand-utils"
version = "0.4.1"
version = "0.4.2"
description = "Random value generation utilities for Winterfell crates"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
documentation = "https://docs.rs/winter-rand-utils/0.4.1"
documentation = "https://docs.rs/winter-rand-utils/0.4.2"
categories = ["cryptography"]
keywords = ["rand"]
edition = "2021"
Expand All @@ -16,7 +16,7 @@ rust-version = "1.60"
bench = false

[dependencies]
utils = { version = "0.4.1", path = "../core", package = "winter-utils" }
utils = { version = "0.4.2", path = "../core", package = "winter-utils" }

[target.'cfg(not(target_family = "wasm"))'.dependencies]
rand = { version = "0.8" }
14 changes: 7 additions & 7 deletions verifier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winter-verifier"
version = "0.4.1"
version = "0.4.2"
description = "Winterfell STARK verifier"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
documentation = "https://docs.rs/winter-verifier/0.4.1"
documentation = "https://docs.rs/winter-verifier/0.4.2"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "zkp", "stark", "verifier"]
edition = "2021"
Expand All @@ -20,11 +20,11 @@ default = ["std"]
std = ["air/std", "crypto/std", "fri/std", "math/std", "utils/std"]

[dependencies]
air = { version = "0.4.1", path = "../air", package = "winter-air", default-features = false }
crypto = { version = "0.4.1", path = "../crypto", package = "winter-crypto", default-features = false }
fri = { version = "0.4.1", path = "../fri", package = "winter-fri", default-features = false }
math = { version = "0.4.1", path = "../math", package = "winter-math", default-features = false }
utils = { version = "0.4.1", path = "../utils/core", package = "winter-utils", default-features = false }
air = { version = "0.4.2", path = "../air", package = "winter-air", default-features = false }
crypto = { version = "0.4.2", path = "../crypto", package = "winter-crypto", default-features = false }
fri = { version = "0.4.2", path = "../fri", package = "winter-fri", default-features = false }
math = { version = "0.4.2", path = "../math", package = "winter-math", default-features = false }
utils = { version = "0.4.2", path = "../utils/core", package = "winter-utils", default-features = false }

# Allow math in docs
[package.metadata.docs.rs]
Expand Down
8 changes: 4 additions & 4 deletions winterfell/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winterfell"
version = "0.4.1"
version = "0.4.2"
description = "Winterfell STARK prover and verifier"
authors = ["winterfell contributors"]
readme = "../README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
documentation = "https://docs.rs/winterfell/0.4.1"
documentation = "https://docs.rs/winterfell/0.4.2"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "zkp", "stark", "prover", "verifier"]
edition = "2021"
Expand All @@ -21,8 +21,8 @@ default = ["std"]
std = ["prover/std", "verifier/std"]

[dependencies]
prover = { version = "0.4.1", path = "../prover", package = "winter-prover", default-features = false }
verifier = { version = "0.4.1", path = "../verifier", package = "winter-verifier", default-features = false }
prover = { version = "0.4.2", path = "../prover", package = "winter-prover", default-features = false }
verifier = { version = "0.4.2", path = "../verifier", package = "winter-verifier", default-features = false }

# Allow math in docs
[package.metadata.docs.rs]
Expand Down

0 comments on commit 08b5831

Please sign in to comment.