From 53d9671baf76133cd729ab9be37338ff2c50d973 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Thu, 16 Jun 2022 18:48:51 +0000 Subject: [PATCH] Release fsb v0.1.2 (#382) --- Cargo.lock | 6 +++--- fsb/CHANGELOG.md | 12 +++++++++--- fsb/Cargo.toml | 2 +- fsb/src/lib.rs | 2 +- 4 files changed, 14 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9a6af448..0b62f804 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -70,7 +70,7 @@ dependencies = [ [[package]] name = "fsb" -version = "0.1.1" +version = "0.1.2" dependencies = [ "digest", "hex-literal", @@ -138,9 +138,9 @@ checksum = "f9b7d56ba4a8344d6be9729995e6b06f928af29998cdf79fe390cbf6b1fee838" [[package]] name = "libc" -version = "0.2.118" +version = "0.2.126" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06e509672465a0504304aa87f9f176f2b2b716ed8fb105ebe5c02dc6dce96a94" +checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" [[package]] name = "md-5" diff --git a/fsb/CHANGELOG.md b/fsb/CHANGELOG.md index 007e2c0e..99cf1285 100644 --- a/fsb/CHANGELOG.md +++ b/fsb/CHANGELOG.md @@ -5,19 +5,25 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## 0.1.1 (2022-02-17) +## 0.1.2 (2022-06-16) +### Fixed +- Incorrect computation of hash on some inputs ([#379]) + +[#379]: https://github.com/RustCrypto/hashes/pull/379 + +## 0.1.1 (2022-02-17) [YANKED] ### Fixed - Minimal versions build ([#363]) [#363]: https://github.com/RustCrypto/hashes/pull/363 -## 0.1.0 (2021-12-07) +## 0.1.0 (2021-12-07) [YANKED] ### Changed - Update to `digest` v0.10 ([#217]) [#217]: https://github.com/RustCrypto/hashes/pull/217 -## 0.0.2 (2020-07-21) +## 0.0.2 (2020-07-21) [YANKED] - Fixed `Reset` implementation bug. Reduce crate size by using binary dump of `PI` ([#300]) diff --git a/fsb/Cargo.toml b/fsb/Cargo.toml index 34746322..9dcd57dd 100644 --- a/fsb/Cargo.toml +++ b/fsb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fsb" -version = "0.1.1" # Also update html_root_url in lib.rs when bumping this +version = "0.1.2" # Also update html_root_url in lib.rs when bumping this description = "FSB hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/fsb/src/lib.rs b/fsb/src/lib.rs index 8e5082ba..d7de8c3e 100644 --- a/fsb/src/lib.rs +++ b/fsb/src/lib.rs @@ -41,7 +41,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/fsb/0.1.1" + html_root_url = "https://docs.rs/fsb/0.1.2" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)]