diff --git a/CHANGELOG.md b/CHANGELOG.md index df15e83..c5571a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog -## [0.3.1](https://github.com/n0-computer/n0-future/compare/v0.3.0..0.3.1) - 2025-11-11 +## [0.3.2](https://github.com/n0-computer/n0-future/compare/v0.3.1..0.3.2) - 2026-01-07 + +### ⛰️ Features + +- Implement `JoinSet::poll_join_next*` and `JoinError::try_into_panic` ([#23](https://github.com/n0-computer/n0-future/issues/23)) - ([4ecea8f](https://github.com/n0-computer/n0-future/commit/4ecea8f83994d993d34aec9bc3173055fa63999c)) + +### ⚙️ Miscellaneous Tasks + +- Bump derive_more ([#22](https://github.com/n0-computer/n0-future/issues/22)) - ([0464e04](https://github.com/n0-computer/n0-future/commit/0464e04cd86c68cd3643f6637a3e23e53b9c5418)) + +## [0.3.1](https://github.com/n0-computer/n0-future/compare/v0.3.0..v0.3.1) - 2025-11-11 ### ⛰️ Features diff --git a/Cargo.lock b/Cargo.lock index 7bc1f8c..8968b20 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -263,7 +263,7 @@ dependencies = [ [[package]] name = "n0-future" -version = "0.3.1" +version = "0.3.2" dependencies = [ "cfg_aliases", "derive_more", diff --git a/Cargo.toml b/Cargo.toml index 810819b..94e756d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "n0-future" -version = "0.3.1" +version = "0.3.2" edition = "2021" readme = "README.md" description = "Number 0's way of doing rust futures. Re-exports what we think are useful abstractions and good implementations."