From 50fdcfcf87fd66fbd19f1679be26a868754b7f19 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 29 Nov 2021 09:48:25 -0700 Subject: [PATCH] pkcs1 v0.3.1 --- Cargo.lock | 2 +- pkcs1/CHANGELOG.md | 6 ++++++ pkcs1/Cargo.toml | 2 +- pkcs1/src/lib.rs | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index acc2548d0..f2da9f56a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -494,7 +494,7 @@ dependencies = [ [[package]] name = "pkcs1" -version = "0.3.0" +version = "0.3.1" dependencies = [ "der", "hex-literal", diff --git a/pkcs1/CHANGELOG.md b/pkcs1/CHANGELOG.md index 0f41767be..84d03fe21 100644 --- a/pkcs1/CHANGELOG.md +++ b/pkcs1/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.3.1 (2021-11-29) +### Changed +- Use `finish_non_exhaustive` in Debug impls ([#245]) + +[#245]: https://github.com/RustCrypto/formats/pull/245 + ## 0.3.0 (2021-11-17) ### Added - Support for multi-prime RSA keys ([#115]) diff --git a/pkcs1/Cargo.toml b/pkcs1/Cargo.toml index aef6774bf..4b8779ce9 100644 --- a/pkcs1/Cargo.toml +++ b/pkcs1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pkcs1" -version = "0.3.0" # Also update html_root_url in lib.rs when bumping this +version = "0.3.1" # Also update html_root_url in lib.rs when bumping this description = """ Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #1: RSA Cryptography Specifications Version 2.2 (RFC 8017) diff --git a/pkcs1/src/lib.rs b/pkcs1/src/lib.rs index 69916fa51..23ce6442a 100644 --- a/pkcs1/src/lib.rs +++ b/pkcs1/src/lib.rs @@ -4,7 +4,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", - html_root_url = "https://docs.rs/pkcs1/0.3.0" + html_root_url = "https://docs.rs/pkcs1/0.3.1" )] #![forbid(unsafe_code, clippy::unwrap_used)] #![warn(missing_docs, rust_2018_idioms, unused_qualifications)]