Skip to content

Commit 0af93f6

Browse files
authored
cipher: release v0.4.4 (#1278)
1 parent 0de66ad commit 0af93f6

File tree

4 files changed

+45
-42
lines changed

4 files changed

+45
-42
lines changed

Cargo.lock

Lines changed: 38 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cipher/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## 0.4.4 [UNRELEASED]
8+
## 0.4.4 (2022-03-09)
99
### Changed
1010
- Move `ParBlocks`/`ParBlocksSizeUser` to the `crypto-common` crate ([#1052])
1111

12+
### Fixed
13+
- Unsoundness triggered by zero block size ([#1277])
14+
1215
[#1052]: https://github.com/RustCrypto/traits/pull/1052
16+
[#1277]: https://github.com/RustCrypto/traits/pull/1277
1317

1418
## 0.4.3 (2022-02-22)
1519
### Fixed

cipher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cipher"
33
description = "Traits for describing block ciphers and stream ciphers"
4-
version = "0.4.3" # Also update html_root_url in lib.rs when bumping this
4+
version = "0.4.4"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

cipher/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
#![cfg_attr(docsrs, feature(doc_cfg))]
1010
#![doc(
1111
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
12-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
13-
html_root_url = "https://docs.rs/cipher/0.4.3"
12+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
1413
)]
1514
#![warn(missing_docs, rust_2018_idioms)]
1615

0 commit comments

Comments
 (0)