aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-05-21 15:02:50 +0800
committer魏曹先生 <1992414357@qq.com>2026-05-21 15:03:55 +0800
commit4704f6d54108bcc8f9b2fb7f4b3c4e224b4a7809 (patch)
tree425b15395de24717f9732d8642e75044774d4583 /CHANGELOG.md
parenta9755711b490529c26bdb4b024c6caf825940dd3 (diff)
Remove `once_cell` dependency and replace with `OnceLock`
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e10c307..8ea9625 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,8 +6,9 @@
None
### Optimizings:
-None
+1. **\[macros\]** Removed dependency `once_cell`, replaced with `std::sync::OnceLock`
+#### Features:
1. **\[macros\]** Added the `empty_result!()` macro for early return from a chain function. This macro is a shorthand for constructing an `EmptyResult` and converting it into a `ChainProcess`, signaling to the pipeline that there is no meaningful output to continue processing.
```rust