From d074cbeb05075e76bf4501d71f4a16b708c6422d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Wed, 12 Mar 2025 19:59:44 +0300 Subject: [PATCH] Release v0.9.8 --- 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 4210925c..55905297 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.8 (2025-03-12) +### Added +- Doc comments to specify the `rand` version ([#473]) + +[#473]: https://github.com/RustCrypto/RSA/pull/473 + ## 0.9.7 (2024-11-26) ### Fixed - always validate keys in from_components diff --git a/Cargo.lock b/Cargo.lock index e1714eea..2ac58661 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -465,7 +465,7 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "rsa" -version = "0.9.7" +version = "0.9.8" dependencies = [ "base64ct", "const-oid", diff --git a/Cargo.toml b/Cargo.toml index 27fe4f30..7d289626 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rsa" -version = "0.9.7" +version = "0.9.8" authors = ["RustCrypto Developers", "dignifiedquire "] edition = "2021" description = "Pure Rust RSA implementation"