Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [0.10.9] - 2025-10-26

### Changed
- Raised the documented MSRV to Rust 1.90 to match the `rust-version`
requirement.

### Documentation
- Regenerated the README from the template so installation snippets reflect the
new crate version and MSRV statement.

## [0.10.8] - 2025-10-25

### Fixed
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,6 +1,6 @@
[package]
name = "masterror"
version = "0.10.8"
version = "0.10.9"
rust-version = "1.90"
edition = "2024"
license = "MIT OR Apache-2.0"
Expand Down
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ Stable categories, conservative HTTP mapping, no `unsafe`.

~~~toml
[dependencies]
masterror = { version = "0.10.8", default-features = false }
masterror = { version = "0.10.9", default-features = false }
# or with features:
# masterror = { version = "0.10.8", features = [
# masterror = { version = "0.10.9", features = [
# "axum", "actix", "openapi", "serde_json",
# "sqlx", "sqlx-migrate", "reqwest", "redis",
# "validator", "config", "tokio", "multipart",
Expand Down Expand Up @@ -66,10 +66,10 @@ masterror = { version = "0.10.8", default-features = false }
~~~toml
[dependencies]
# lean core
masterror = { version = "0.10.8", default-features = false }
masterror = { version = "0.10.9", default-features = false }

# with Axum/Actix + JSON + integrations
# masterror = { version = "0.10.8", features = [
# masterror = { version = "0.10.9", features = [
# "axum", "actix", "openapi", "serde_json",
# "sqlx", "sqlx-migrate", "reqwest", "redis",
# "validator", "config", "tokio", "multipart",
Expand Down Expand Up @@ -623,13 +623,13 @@ assert_eq!(resp.status, 401);
Minimal core:

~~~toml
masterror = { version = "0.10.8", default-features = false }
masterror = { version = "0.10.9", default-features = false }
~~~

API (Axum + JSON + deps):

~~~toml
masterror = { version = "0.10.8", features = [
masterror = { version = "0.10.9", features = [
"axum", "serde_json", "openapi",
"sqlx", "reqwest", "redis", "validator", "config", "tokio"
] }
Expand All @@ -638,7 +638,7 @@ masterror = { version = "0.10.8", features = [
API (Actix + JSON + deps):

~~~toml
masterror = { version = "0.10.8", features = [
masterror = { version = "0.10.9", features = [
"actix", "serde_json", "openapi",
"sqlx", "reqwest", "redis", "validator", "config", "tokio"
] }
Expand Down Expand Up @@ -709,4 +709,3 @@ MSRV = 1.90 (may raise in minor, never in patch).
Apache-2.0 OR MIT, at your option.

</details>

2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
//!
//! # Minimum Supported Rust Version (MSRV)
//!
//! MSRV is **1.89**. New minor releases may increase MSRV with a changelog
//! MSRV is **1.90**. New minor releases may increase MSRV with a changelog
//! note, but never in a patch release.
//!
//! # Feature flags
Expand Down
2 changes: 1 addition & 1 deletion src/turnkey/classifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ fn contains_any_nocase(haystack: &str, needles: &[&str]) -> bool {
/// Converts ASCII letters to lowercase and leaves other bytes unchanged.
#[inline]
const fn ascii_lower(b: u8) -> u8 {
// ASCII-only fold without RangeInclusive to keep const-friendly on MSRV 1.89
// ASCII-only fold without RangeInclusive to keep const-friendly on MSRV 1.90
if b >= b'A' && b <= b'Z' { b + 32 } else { b }
}

Expand Down
2 changes: 1 addition & 1 deletion tests/readme_sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use tempfile::tempdir;
const MINIMAL_MANIFEST: &str = r#"[package]
name = "demo"
version = "1.2.3"
rust-version = "1.89"
rust-version = "1.90"
edition = "2024"

[features]
Expand Down
Loading