From 050147818c1a313cf1ec30bdd4dfbdab4a26e574 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 21 Jun 2020 14:53:19 -0700 Subject: [PATCH] cryptography v0.1.4 (#206) --- Cargo.lock | 2 +- cryptography/CHANGELOG.md | 8 ++++++++ cryptography/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f3fe1cd2d..0917e679d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -77,7 +77,7 @@ dependencies = [ [[package]] name = "cryptography" -version = "0.1.3" +version = "0.1.4" dependencies = [ "aead", "block-cipher", diff --git a/cryptography/CHANGELOG.md b/cryptography/CHANGELOG.md index bcadefe62..10747fdcc 100644 --- a/cryptography/CHANGELOG.md +++ b/cryptography/CHANGELOG.md @@ -5,6 +5,14 @@ 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.4 (2020-06-21) +### Added +- rustdoc improvements ([#205]) +- `mac` feature ([#204]) + +[#205]: https://github.com/RustCrypto/traits/pull/205 +[#204]: https://github.com/RustCrypto/traits/pull/204 + ## 0.1.3 (2020-06-21) ### Fixed - Link rendering on https://docs.rs ([#202]) diff --git a/cryptography/Cargo.toml b/cryptography/Cargo.toml index 30d66bde0..b858a5f90 100644 --- a/cryptography/Cargo.toml +++ b/cryptography/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cryptography" -version = "0.1.3" +version = "0.1.4" authors = ["The RustCrypto Project Developers"] license = "Apache-2.0 OR MIT" description = "Facade crate for the RustCrypto project's traits"