Skip to content

Commit

Permalink
updated crate versions to v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
irakliyk committed Feb 21, 2024
1 parent 47c12aa commit 23eb713
Show file tree
Hide file tree
Showing 13 changed files with 29 additions and 22 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.8.1 (2024-02-21)
* Refactored util module re-exports to comply with latest clippy updates (#250).

## 0.8.0 (2024-02-06)
* Added variable-length serialization and deserialization for `usize` type (#238).
* [BREAKING] Removed `Serializable` and `Deserializable` implementations from slices and vectors (#239).
Expand Down
4 changes: 2 additions & 2 deletions air/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winter-air"
version = "0.8.0"
version = "0.8.1"
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.8.0"
documentation = "https://docs.rs/winter-air/0.8.1"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "arithmetization", "air"]
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winter-crypto"
version = "0.8.0"
version = "0.8.1"
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.8.0"
documentation = "https://docs.rs/winter-crypto/0.8.1"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "merkle-tree", "hash"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "examples"
version = "0.8.0"
version = "0.8.1"
description = "Examples of using Winterfell STARK prover/verifier"
authors = ["winterfell contributors"]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions fri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winter-fri"
version = "0.8.0"
version = "0.8.1"
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.8.0"
documentation = "https://docs.rs/winter-fri/0.8.1"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "polynomial", "commitments"]
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions math/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winter-math"
version = "0.8.0"
version = "0.8.1"
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.8.0"
documentation = "https://docs.rs/winter-math/0.8.1"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "finite-fields", "polynomials", "fft"]
edition = "2021"
Expand Down
5 changes: 2 additions & 3 deletions math/src/field/f128/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
// This source code is licensed under the MIT license found in the
// LICENSE file in the root directory of this source tree.

use super::{
AsBytes, BaseElement, ByteReader, DeserializationError, FieldElement, StarkField, Vec, M,
};
use super::{AsBytes, BaseElement, ByteReader, DeserializationError, FieldElement, StarkField, M};
use crate::field::{ExtensionOf, QuadExtension};
use num_bigint::BigUint;
use rand_utils::{rand_value, rand_vector};
use utils::collections::*;
use utils::SliceReader;

// BASIC ALGEBRA
Expand Down
4 changes: 2 additions & 2 deletions prover/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winter-prover"
version = "0.8.0"
version = "0.8.1"
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.8.0"
documentation = "https://docs.rs/winter-prover/0.8.1"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "zkp", "stark", "prover"]
edition = "2021"
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.8.0"
version = "0.8.1"
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.8.0"
documentation = "https://docs.rs/winter-utils/0.8.1"
categories = ["cryptography", "no-std"]
keywords = ["serialization", "transmute"]
edition = "2021"
Expand Down
5 changes: 5 additions & 0 deletions utils/core/src/boxed.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the root directory of this source tree.

#[cfg(not(feature = "std"))]
pub use alloc::boxed::Box;

Expand Down
4 changes: 2 additions & 2 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.8.0"
version = "0.8.1"
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.8.0"
documentation = "https://docs.rs/winter-rand-utils/0.8.1"
categories = ["cryptography"]
keywords = ["rand"]
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions verifier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winter-verifier"
version = "0.8.0"
version = "0.8.1"
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.8.0"
documentation = "https://docs.rs/winter-verifier/0.8.1"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "zkp", "stark", "verifier"]
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions winterfell/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winterfell"
version = "0.8.0"
version = "0.8.1"
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.8.0"
documentation = "https://docs.rs/winterfell/0.8.1"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "zkp", "stark", "prover", "verifier"]
edition = "2021"
Expand Down

0 comments on commit 23eb713

Please sign in to comment.