Skip to content

Commit 37bc623

Browse files
authored
171 (#172)
* #171 fix: add missing Box import in result_ext.rs * #171 chore: bump version to 0.24.18 and update changelog
1 parent 31d0ef1 commit 37bc623

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ All notable changes to this project will be documented in this file.
99

1010
## [Unreleased]
1111

12+
## [0.24.18] - 2025-10-09
13+
14+
### Fixed
15+
- Added missing `Box` import in `src/result_ext.rs` to fix compilation error when using `default-features = false`.
16+
1217
## [0.24.17] - 2025-11-02
1318

1419
### Fixed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[package]
66
name = "masterror"
7-
version = "0.24.17"
7+
version = "0.24.18"
88
rust-version = "1.90"
99
edition = "2024"
1010
license = "MIT OR Apache-2.0"

README.md

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

8181
~~~toml
8282
[dependencies]
83-
masterror = { version = "0.24.17", default-features = false }
83+
masterror = { version = "0.24.18", default-features = false }
8484
# or with features:
85-
# masterror = { version = "0.24.17", features = [
85+
# masterror = { version = "0.24.18", features = [
8686
# "std", "axum", "actix", "openapi",
8787
# "serde_json", "tracing", "metrics", "backtrace",
8888
# "sqlx", "sqlx-migrate", "reqwest", "redis",

src/result_ext.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// SPDX-License-Identifier: MIT
44

5-
use alloc::{borrow::Cow, sync::Arc};
5+
use alloc::{borrow::Cow, boxed::Box, sync::Arc};
66
use core::error::Error as CoreError;
77

88
use crate::app_error::{Context, Error};

0 commit comments

Comments
 (0)