Skip to content

Commit 8afac0d

Browse files
committed
chore: bump version to 0.25.0 and remove Apache-2.0 license
- masterror: 0.24.19 -> 0.25.0 - masterror-derive: 0.9.2 -> 0.10.0 - Remove Apache-2.0, keep only MIT license - Update dependency versions This version includes: - 217+ new tests (291 -> 508 tests) - Environment-based error display levels (prod/local/staging) - Optional colored terminal output - Major refactoring of core modules - CI/CD improvements (auto-release, codecov, SBOM) - Comprehensive test coverage across all modules
1 parent d0c162a commit 8afac0d

File tree

5 files changed

+39
-27
lines changed

5 files changed

+39
-27
lines changed

Cargo.lock

Lines changed: 30 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[package]
66
name = "masterror"
7-
version = "0.24.19"
7+
version = "0.25.0"
88
rust-version = "1.90"
99
edition = "2024"
1010
license = "MIT"
@@ -89,11 +89,11 @@ openapi = ["dep:utoipa", "std"]
8989
benchmarks = ["std"]
9090

9191
[workspace.dependencies]
92-
masterror-derive = { version = "0.9.2" }
92+
masterror-derive = { version = "0.10.0" }
9393
masterror-template = { version = "0.3.8" }
9494

9595
[dependencies]
96-
masterror-derive = { version = "0.9" }
96+
masterror-derive = { version = "0.10" }
9797
masterror-template = { workspace = true }
9898
tracing = { version = "0.1", optional = true, default-features = false, features = [
9999
"attributes",

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ The build script keeps the full feature snippet below in sync with
159159

160160
~~~toml
161161
[dependencies]
162-
masterror = { version = "0.24.19", default-features = false }
162+
masterror = { version = "0.25.0", default-features = false }
163163
# or with features:
164-
# masterror = { version = "0.24.19", features = [
164+
# masterror = { version = "0.25.0", features = [
165165
# "std", "axum", "actix", "openapi",
166166
# "serde_json", "tracing", "metrics", "backtrace",
167167
# "colored", "sqlx", "sqlx-migrate", "reqwest",
@@ -640,7 +640,7 @@ Enable the `colored` feature for enhanced terminal output in local mode:
640640

641641
~~~toml
642642
[dependencies]
643-
masterror = { version = "0.24.19", features = ["colored"] }
643+
masterror = { version = "0.25.0", features = ["colored"] }
644644
~~~
645645

646646
With `colored` enabled, errors display with syntax highlighting:

masterror-derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
[package]
66
name = "masterror-derive"
77
rust-version = "1.90"
8-
version = "0.9.2"
8+
version = "0.10.0"
99
edition = "2024"
10-
license = "MIT OR Apache-2.0"
10+
license = "MIT"
1111
repository = "https://github.com/RAprogramm/masterror"
1212
readme = "README.md"
1313
description = "Derive macros for masterror"

masterror-template/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ edition = "2024"
1010
repository = "https://github.com/RAprogramm/masterror"
1111
readme = "README.md"
1212
description = "Template utilities for masterror and its derive macros"
13-
license = "MIT OR Apache-2.0"
13+
license = "MIT"
1414

1515
[dependencies]

0 commit comments

Comments
 (0)