From e855f9db868dee157a5244a483b0fa228327deee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20S=C3=B6rng=C3=A5rd?= Date: Wed, 13 Nov 2024 17:23:54 +0100 Subject: [PATCH] Clarify which crate versions have what MSRV --- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72996e8..cf39b98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ This file contains the changes to the crate since version 0.4.8. +## 0.9.3 + +- Clarify which crate versions have which MSRVs. + ## 0.9.2 - Correct docstring of `Primes`. diff --git a/Cargo.lock b/Cargo.lock index 0f3f17e..8b79416 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -101,7 +101,7 @@ checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" [[package]] name = "const-primes" -version = "0.9.2" +version = "0.9.3" dependencies = [ "criterion", "rand", diff --git a/Cargo.toml b/Cargo.toml index 5bdecb1..6af7386 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "const-primes" authors = ["Johanna Sörngård "] -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "MIT OR Apache-2.0" keywords = ["const", "primes", "no_std", "prime-numbers"] diff --git a/src/lib.rs b/src/lib.rs index 170e841..a791f9f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,7 @@ //! //! `no_std` compatible when the `serde` feature is disabled. //! -//! This version supports Rust versions 1.81.0 and up, while previous versions support Rust versions 1.67.1 and up. +//! This version supports Rust versions 1.81.0 and up, while versions 0.8.7 and older support Rust versions 1.67.1 and up. //! //! # Example: generate primes at compile time and reuse it for related computations //!