Skip to content

Commit

Permalink
updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
irakliyk committed Dec 6, 2023
1 parent ca4404a commit 1a6992f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 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.7.3 (2023-12-06) - `utils/core` crate only
* Added default deserializer implementations (#233)

## 0.7.3 (2023-12-01) - `air` crate only
* Fixed `StarkProof::new_dummy()` constructor (#234).

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.7.2"
version = "0.7.3"
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.7.2"
documentation = "https://docs.rs/winter-utils/0.7.3"
categories = ["cryptography", "no-std"]
keywords = ["serialization", "transmute"]
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions utils/core/src/serde/byte_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub trait ByteReader {
fn peek_u8(&self) -> Result<u8, DeserializationError>;

/// Returns a slice of bytes of the specified length read from `self`.
///
///
/// # Errors
/// Returns a [DeserializationError] if a slice of the specified length could not be read
/// from `self`.
Expand Down Expand Up @@ -112,7 +112,7 @@ pub trait ByteReader {
}

/// Returns a String of the specified length read from `self`.
///
///
/// # Errors
/// Returns a [DeserializationError] if a String of the specified length could not be read
/// from `self`.
Expand Down

0 comments on commit 1a6992f

Please sign in to comment.