diff --git a/Cargo.lock b/Cargo.lock index dc0733212..60ea86547 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -197,7 +197,7 @@ dependencies = [ [[package]] name = "pkcs1" -version = "0.2.3" +version = "0.2.4" dependencies = [ "der", "hex-literal", diff --git a/pkcs1/CHANGELOG.md b/pkcs1/CHANGELOG.md index 9fe5e8709..8ec983c32 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.2.4 (2021-09-14) +### Changed +- Moved to `formats` repo ([#2]) + +[#2]: https://github.com/RustCrypto/formats/pull/2 + ## 0.2.3 (2021-07-26) ### Added - Support for customizing PEM `LineEnding` diff --git a/pkcs1/Cargo.toml b/pkcs1/Cargo.toml index 2824a9f4c..d77535d36 100644 --- a/pkcs1/Cargo.toml +++ b/pkcs1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pkcs1" -version = "0.2.3" # Also update html_root_url in lib.rs when bumping this +version = "0.2.4" # 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/README.md b/pkcs1/README.md index c97738b62..a1bd2dc7e 100644 --- a/pkcs1/README.md +++ b/pkcs1/README.md @@ -1,4 +1,4 @@ -# RustCrypto: PKCS#1 (RSA) +# [RustCrypto]: PKCS#1 (RSA) [![crate][crate-image]][crate-link] [![Docs][docs-image]][docs-link] @@ -59,4 +59,5 @@ dual licensed as above, without any additional terms or conditions. [//]: # (links) +[RustCrypto]: https://github.com/rustcrypto [RFC 8017]: https://datatracker.ietf.org/doc/html/rfc8017 diff --git a/pkcs1/src/lib.rs b/pkcs1/src/lib.rs index 5fa050787..23f4ab906 100644 --- a/pkcs1/src/lib.rs +++ b/pkcs1/src/lib.rs @@ -27,7 +27,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.2.3" + html_root_url = "https://docs.rs/pkcs1/0.2.4" )] #![forbid(unsafe_code, clippy::unwrap_used)] #![warn(missing_docs, rust_2018_idioms, unused_qualifications)]