From 1838cdddcdaba3ad9e248c34ff4f8bfc408ae5bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Dec 2025 01:20:12 +0000 Subject: [PATCH 1/2] chore: release v0.3.2 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e174b8..771dc09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.2](https://github.com/Amanieu/corosensei/compare/v0.3.1...v0.3.2) - 2025-12-03 + +### Other + +- Add powerpc64le-unknown-linux-gnu to README and CI +- Rework PowerPC implementation to use a new stack layout +- Addressed comments: +- Port to target powerpc64. + ## [0.3.1](https://github.com/Amanieu/corosensei/compare/v0.3.0...v0.3.1) - 2025-10-11 - Try harder when forcing coroutines to unwind (#62) diff --git a/Cargo.toml b/Cargo.toml index c3e39fd..6434fdb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "corosensei" -version = "0.3.1" +version = "0.3.2" authors = ["Amanieu d'Antras "] description = "A fast and safe implementation of stackful coroutines" license = "MIT OR Apache-2.0" From 5551c8bc2f9ce9f3e7f671cb336345f25ee8a4cf Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Wed, 3 Dec 2025 01:24:22 +0000 Subject: [PATCH 2/2] Update CHANGELOG --- CHANGELOG.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 771dc09..cce684d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,12 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.3.2](https://github.com/Amanieu/corosensei/compare/v0.3.1...v0.3.2) - 2025-12-03 -### Other - -- Add powerpc64le-unknown-linux-gnu to README and CI -- Rework PowerPC implementation to use a new stack layout -- Addressed comments: -- Port to target powerpc64. +- Added PowerPC64 support (#61) ## [0.3.1](https://github.com/Amanieu/corosensei/compare/v0.3.0...v0.3.1) - 2025-10-11