From cd16e1d8f6a390c74461362f93b667f2e45efa95 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 12 Jul 2021 08:45:09 -0700 Subject: [PATCH] aead v0.4.2 --- aead/CHANGELOG.md | 2 +- aead/Cargo.toml | 2 +- aead/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aead/CHANGELOG.md b/aead/CHANGELOG.md index ca9ceeb37..09e9de176 100644 --- a/aead/CHANGELOG.md +++ b/aead/CHANGELOG.md @@ -5,7 +5,7 @@ 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). -## [Unreleased] +## v0.4.2 (2021-07-12) ### Added - Re-export `rand_core` ([#682]) diff --git a/aead/Cargo.toml b/aead/Cargo.toml index 5660ff0ee..b0f2ca01b 100644 --- a/aead/Cargo.toml +++ b/aead/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aead" -version = "0.4.1" # Also update html_root_url in lib.rs when bumping this +version = "0.4.2" # Also update html_root_url in lib.rs when bumping this description = """ Traits for Authenticated Encryption with Associated Data (AEAD) algorithms, such as AES-GCM as ChaCha20Poly1305, which provide a high-level API diff --git a/aead/src/lib.rs b/aead/src/lib.rs index 0ff10d41f..05ad57dd2 100644 --- a/aead/src/lib.rs +++ b/aead/src/lib.rs @@ -19,7 +19,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg", html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg", - html_root_url = "https://docs.rs/aead/0.4.1" + html_root_url = "https://docs.rs/aead/0.4.2" )] #![warn(missing_docs, rust_2018_idioms)]