From 639d4f21597a43a4841ed36c1b3ff130ad70daa4 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 29 Apr 2021 16:10:27 -0700 Subject: [PATCH] ccm v0.4.0 --- Cargo.lock | 2 +- ccm/CHANGELOG.md | 12 ++++++++++++ ccm/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2a25ad03..ea6ac43a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -94,7 +94,7 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" [[package]] name = "ccm" -version = "0.4.0-pre" +version = "0.4.0" dependencies = [ "aead", "aes", diff --git a/ccm/CHANGELOG.md b/ccm/CHANGELOG.md index 68c70ff3..118b2271 100644 --- a/ccm/CHANGELOG.md +++ b/ccm/CHANGELOG.md @@ -4,6 +4,18 @@ 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.4.0 (2021-04-29) +### Changed +- Bump `aead` dependency to v0.4 ([#270]) +- Bump `cipher` dependency to v0.3 ([#283]) + +### Fixed +- Panic on 32-bit targets ([#263]) + +[#263]: https://github.com/RustCrypto/AEADs/pull/263 +[#270]: https://github.com/RustCrypto/AEADs/pull/270 +[#283]: https://github.com/RustCrypto/AEADs/pull/283 + ## 0.3.0 (2020-10-16) ### Changed - Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#229]) diff --git a/ccm/Cargo.toml b/ccm/Cargo.toml index bdc4b049..e8a48770 100644 --- a/ccm/Cargo.toml +++ b/ccm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ccm" -version = "0.4.0-pre" +version = "0.4.0" description = "Generic implementation of the Counter with CBC-MAC (CCM) mode" authors = ["RustCrypto Developers"] edition = "2018"