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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [0.24.8] - 2025-10-24

### Changed
- Raised the documented and enforced MSRV to Rust 1.90 across the workspace to
satisfy dependencies that no longer compile on Rust 1.89.

## [0.24.7] - 2025-10-23

### Fixed
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "masterror"
version = "0.24.7"
rust-version = "1.89"
version = "0.24.8"
rust-version = "1.90"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/RAprogramm/masterror"
Expand Down Expand Up @@ -42,7 +42,7 @@ resolver = "3"
# Defaults for members (root объявлен строками выше, потому что build.rs парсит его как строки)
[workspace.package]
edition = "2024"
rust-version = "1.89"
rust-version = "1.90"
license = "MIT OR Apache-2.0"
repository = "https://github.com/RAprogramm/masterror"
readme = "README.md"
Expand Down Expand Up @@ -76,8 +76,8 @@ tonic = ["dep:tonic", "std"]
openapi = ["dep:utoipa", "std"]

[workspace.dependencies]
masterror-derive = { version = "0.9.1" }
masterror-template = { version = "0.3.7" }
masterror-derive = { version = "0.9.2" }
masterror-template = { version = "0.3.8" }

[dependencies]
masterror-derive = { version = "0.9" }
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Crates.io](https://img.shields.io/crates/v/masterror)](https://crates.io/crates/masterror)
[![docs.rs](https://img.shields.io/docsrs/masterror)](https://docs.rs/masterror)
[![Downloads](https://img.shields.io/crates/d/masterror)](https://crates.io/crates/masterror)
![MSRV](https://img.shields.io/badge/MSRV-1.89-blue)
![MSRV](https://img.shields.io/badge/MSRV-1.90-blue)
![License](https://img.shields.io/badge/License-MIT%20or%20Apache--2.0-informational)
[![CI](https://github.com/RAprogramm/masterror/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/RAprogramm/masterror/actions/workflows/ci.yml?query=branch%3Amain)
[![Security audit](https://github.com/RAprogramm/masterror/actions/workflows/ci.yml/badge.svg?branch=main&label=Security%20audit)](https://github.com/RAprogramm/masterror/actions/workflows/ci.yml?query=branch%3Amain)
Expand Down Expand Up @@ -74,9 +74,9 @@ The build script keeps the full feature snippet below in sync with

~~~toml
[dependencies]
masterror = { version = "0.24.7", default-features = false }
masterror = { version = "0.24.8", default-features = false }
# or with features:
# masterror = { version = "0.24.7", features = [
# masterror = { version = "0.24.8", features = [
# "std", "axum", "actix", "openapi",
# "serde_json", "tracing", "metrics", "backtrace",
# "sqlx", "sqlx-migrate", "reqwest", "redis",
Expand Down Expand Up @@ -445,4 +445,4 @@ assert_eq!(problem.grpc.expect("grpc").name, "UNAUTHENTICATED");

---

MSRV: **1.89** · License: **MIT OR Apache-2.0** · No `unsafe`
MSRV: **1.90** · License: **MIT OR Apache-2.0** · No `unsafe`
4 changes: 2 additions & 2 deletions README.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Crates.io](https://img.shields.io/crates/v/masterror)](https://crates.io/crates/masterror)
[![docs.rs](https://img.shields.io/docsrs/masterror)](https://docs.rs/masterror)
[![Downloads](https://img.shields.io/crates/d/masterror)](https://crates.io/crates/masterror)
![MSRV](https://img.shields.io/badge/MSRV-1.89-blue)
![MSRV](https://img.shields.io/badge/MSRV-1.90-blue)
![License](https://img.shields.io/badge/License-MIT%20or%20Apache--2.0-informational)
[![CI](https://github.com/RAprogramm/masterror/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/RAprogramm/masterror/actions/workflows/ci.yml?query=branch%3Amain)
[![Security audit](https://github.com/RAprogramm/masterror/actions/workflows/ci.yml/badge.svg?branch=main&label=Security%20audit)](https://github.com/RAprogramm/masterror/actions/workflows/ci.yml?query=branch%3Amain)
Expand Down Expand Up @@ -364,4 +364,4 @@ assert_eq!(problem.grpc.expect("grpc").name, "UNAUTHENTICATED");

---

MSRV: **1.89** · Лицензия: **MIT OR Apache-2.0** · Без `unsafe`
MSRV: **1.90** · Лицензия: **MIT OR Apache-2.0** · Без `unsafe`
4 changes: 2 additions & 2 deletions masterror-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "masterror-derive"
rust-version = "1.89"
version = "0.9.1"
rust-version = "1.90"
version = "0.9.2"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/RAprogramm/masterror"
Expand Down
4 changes: 2 additions & 2 deletions masterror-template/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "masterror-template"
version = "0.3.7"
rust-version = "1.89"
version = "0.3.8"
rust-version = "1.90"
edition = "2024"
repository = "https://github.com/RAprogramm/masterror"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions masterror-template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ Add the crate alongside `masterror` if you need direct access to the parser:

```toml
[dependencies]
masterror-template = { version = "0.3.7" }
masterror-template = { version = "0.3.8" }
```

`masterror-template` targets Rust 1.89 and builds on stable and nightly toolchains alike.
`masterror-template` targets Rust 1.90 and builds on stable and nightly toolchains alike.

## Parsing templates

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,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 @@ -193,7 +193,7 @@ const fn is_ascii_alphanumeric(byte: u8) -> 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