From 4f1d4138456a6c7230a5718719f14331208033fc Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 31 Oct 2022 15:03:26 -0600 Subject: [PATCH] v0.7.1 (#218) --- CHANGELOG.md | 13 ++++++++++++- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 961f9cc..a6e7258 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +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.7.0 (2022-10-10) +## 0.7.1 (2022-10-31) +### Added +- Documentation improvements ([#216]) + +### Changed +- Ensure `PaddingScheme` is `Send` and `Sync` ([#215]) + +[#215]: https://github.com/RustCrypto/RSA/pull/215 +[#216]: https://github.com/RustCrypto/RSA/pull/216 + + +## 0.7.0 (2022-10-10) [YANKED] NOTE: when computing signatures with this release, make sure to enable the `oid` crate feature of the digest crate you are using when computing the diff --git a/Cargo.toml b/Cargo.toml index 929573b..9fc5ff8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rsa" -version = "0.7.0" +version = "0.7.1" authors = ["RustCrypto Developers", "dignifiedquire "] edition = "2021" description = "Pure Rust RSA implementation"