From dfa23bccb418b8d2bbcae9a751fbe20e5f20d134 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 8 May 2023 07:15:09 -0600 Subject: [PATCH] v0.9.2 (#331) --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d5c779..25d1891 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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.9.2 (2023-05-08) +### Fixed +- pkcs1v15: have `fmt` impls call `SignatureEncoding::to_bytes` ([#330]) + +[#330]: https://github.com/RustCrypto/RSA/pull/330 + ## 0.9.1 (2023-05-03) ### Fixed - Left pad signatures when encoding ([#325]) diff --git a/Cargo.lock b/Cargo.lock index 1e351bd..49d6a25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -512,7 +512,7 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "rsa" -version = "0.9.1" +version = "0.9.2" dependencies = [ "base64ct", "byteorder", diff --git a/Cargo.toml b/Cargo.toml index 01cefca..e84c43c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rsa" -version = "0.9.1" +version = "0.9.2" authors = ["RustCrypto Developers", "dignifiedquire "] edition = "2021" description = "Pure Rust RSA implementation"