From bfb697f9dd2228df7a30b48d27fd4bd1b780b8d9 Mon Sep 17 00:00:00 2001 From: RAprogramm Date: Sun, 5 Jul 2026 14:48:43 +0700 Subject: [PATCH] #462 chore: release 0.29.0 --- Cargo.lock | 4 ++-- Cargo.toml | 6 +++--- README.md | 6 +++--- masterror-derive/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3d26f06..198abf7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1947,7 +1947,7 @@ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" [[package]] name = "masterror" -version = "0.28.0" +version = "0.29.0" dependencies = [ "actix-web", "anyhow", @@ -1991,7 +1991,7 @@ dependencies = [ [[package]] name = "masterror-derive" -version = "0.11.3" +version = "0.12.0" dependencies = [ "masterror-template", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index f19006b..7f9e8c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "masterror" -version = "0.28.0" +version = "0.29.0" rust-version = "1.96" edition = "2024" license = "MIT" @@ -89,11 +89,11 @@ openapi = ["dep:utoipa", "std"] benchmarks = ["std"] [workspace.dependencies] -masterror-derive = { version = "0.11" } +masterror-derive = { version = "0.12" } masterror-template = { version = "0.4" } [dependencies] -masterror-derive = { version = "0.11" } +masterror-derive = { version = "0.12" } masterror-template = { workspace = true } tracing = { version = "0.1", optional = true, default-features = false, features = [ "attributes", diff --git a/README.md b/README.md index 3f91f6f..f75de11 100644 --- a/README.md +++ b/README.md @@ -170,9 +170,9 @@ The build script keeps the full feature snippet below in sync with ~~~toml [dependencies] -masterror = { version = "0.28.0", default-features = false } +masterror = { version = "0.29.0", default-features = false } # or with features: -# masterror = { version = "0.28.0", features = [ +# masterror = { version = "0.29.0", features = [ # "std", "axum", "actix", "openapi", # "serde_json", "tracing", "metrics", "backtrace", # "colored", "sqlx", "sqlx-migrate", "reqwest", @@ -697,7 +697,7 @@ never contains escape sequences: ~~~toml [dependencies] -masterror = { version = "0.28.0", features = ["colored"] } +masterror = { version = "0.29.0", features = ["colored"] } ~~~ diff --git a/masterror-derive/Cargo.toml b/masterror-derive/Cargo.toml index b9177fb..0d442f1 100644 --- a/masterror-derive/Cargo.toml +++ b/masterror-derive/Cargo.toml @@ -5,7 +5,7 @@ [package] name = "masterror-derive" rust-version = "1.96" -version = "0.11.3" +version = "0.12.0" edition = "2024" license = "MIT" repository = "https://github.com/RAprogramm/masterror"