diff --git a/CHANGELOG.md b/CHANGELOG.md index 9639b65..6f13812 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/Amanieu/corosensei/compare/v0.2.2...v0.3.0) - 2025-09-27 + +- Re-introduce `ScopedCoroutine` (#58, #60) +- Add support for running with sanitizers (#54) +- Require `Coroutine` stack to be `'static` (#44) +- Fixed linker errors related `stack_init_trampoline_return` (#55) + ## [0.2.2](https://github.com/Amanieu/corosensei/compare/v0.2.1...v0.2.2) - 2025-05-27 - Fixed mutable TEB fields not being updated when `force_reset` is called. (#48) diff --git a/Cargo.toml b/Cargo.toml index 48e355a..5d03224 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "corosensei" -version = "0.2.2" +version = "0.3.0" authors = ["Amanieu d'Antras "] description = "A fast and safe implementation of stackful coroutines" license = "MIT OR Apache-2.0"