From 77a508fe3d4e95d4b28442a49e3aada710620f93 Mon Sep 17 00:00:00 2001 From: RA <70325462+RAprogramm@users.noreply.github.com> Date: Sun, 21 Sep 2025 08:33:13 +0700 Subject: [PATCH] Fix README integrations accordion and bump version --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 18 ++++++++++-------- README.template.md | 2 ++ 5 files changed, 25 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e453f73..985cf91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.10.10] - 2025-10-27 + +### Fixed +- Closed the `Web framework integrations` accordion so nested integration + sections expand and collapse independently without affecting neighbouring + details blocks. + +### Documentation +- Regenerated the README from the updated template to keep the published + markup balanced. + ## [0.10.9] - 2025-10-26 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index ef7cb8f..25b4471 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1606,7 +1606,7 @@ dependencies = [ [[package]] name = "masterror" -version = "0.10.9" +version = "0.10.10" dependencies = [ "actix-web", "axum", diff --git a/Cargo.toml b/Cargo.toml index 6b49254..2a8ca13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "masterror" -version = "0.10.9" +version = "0.10.10" rust-version = "1.90" edition = "2024" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index f629ac7..ddc6731 100644 --- a/README.md +++ b/README.md @@ -29,9 +29,9 @@ Stable categories, conservative HTTP mapping, no `unsafe`. ~~~toml [dependencies] -masterror = { version = "0.10.9", default-features = false } +masterror = { version = "0.10.10", default-features = false } # or with features: -# masterror = { version = "0.10.9", features = [ +# masterror = { version = "0.10.10", features = [ # "axum", "actix", "openapi", "serde_json", # "sqlx", "sqlx-migrate", "reqwest", "redis", # "validator", "config", "tokio", "multipart", @@ -66,10 +66,10 @@ masterror = { version = "0.10.9", default-features = false } ~~~toml [dependencies] # lean core -masterror = { version = "0.10.9", default-features = false } +masterror = { version = "0.10.10", default-features = false } # with Axum/Actix + JSON + integrations -# masterror = { version = "0.10.9", features = [ +# masterror = { version = "0.10.10", features = [ # "axum", "actix", "openapi", "serde_json", # "sqlx", "sqlx-migrate", "reqwest", "redis", # "validator", "config", "tokio", "multipart", @@ -378,7 +378,7 @@ diagnostics. | Specifier | `core::fmt` trait | Example output | Notes | |------------------|----------------------------|------------------------|-------| -| _default_ | `core::fmt::Display` | `value` | User-facing strings; `#` has no effect. | +| *default* | `core::fmt::Display` | `value` | User-facing strings; `#` has no effect. | | `:?` / `:#?` | `core::fmt::Debug` | `Struct { .. }` / multi-line | Mirrors `Debug`; `#` pretty-prints structs. | | `:x` / `:#x` | `core::fmt::LowerHex` | `0x2a` | Hexadecimal; `#` prepends `0x`. | | `:X` / `:#X` | `core::fmt::UpperHex` | `0x2A` | Uppercase hex; `#` prepends `0x`. | @@ -578,6 +578,8 @@ assert_eq!(resp.status, 401); + +
Feature flags @@ -623,13 +625,13 @@ assert_eq!(resp.status, 401); Minimal core: ~~~toml -masterror = { version = "0.10.9", default-features = false } +masterror = { version = "0.10.10", default-features = false } ~~~ API (Axum + JSON + deps): ~~~toml -masterror = { version = "0.10.9", features = [ +masterror = { version = "0.10.10", features = [ "axum", "serde_json", "openapi", "sqlx", "reqwest", "redis", "validator", "config", "tokio" ] } @@ -638,7 +640,7 @@ masterror = { version = "0.10.9", features = [ API (Actix + JSON + deps): ~~~toml -masterror = { version = "0.10.9", features = [ +masterror = { version = "0.10.10", features = [ "actix", "serde_json", "openapi", "sqlx", "reqwest", "redis", "validator", "config", "tokio" ] } diff --git a/README.template.md b/README.template.md index 47e35f4..e071ddd 100644 --- a/README.template.md +++ b/README.template.md @@ -572,6 +572,8 @@ assert_eq!(resp.status, 401);
+ +
Feature flags