Skip to content

Commit

Permalink
Clarify which crate versions have what MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
JSorngard committed Nov 13, 2024
1 parent e65941e commit e855f9d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<N>`.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "const-primes"
authors = ["Johanna Sörngård <jsorngard@gmail.com>"]
version = "0.9.2"
version = "0.9.3"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["const", "primes", "no_std", "prime-numbers"]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
//!
Expand Down

0 comments on commit e855f9d

Please sign in to comment.