diff --git a/CHANGELOG.md b/CHANGELOG.md index 045930c67..9b5cf7421 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## unreleased + +* Change `CmdOutcome` to be an `enum` indicating whether it is completed, interrupted, or erroneous. ([#141], [#163]) +* Add `CmdBlock` trait to encompass one function for all items. ([#141], [#163]) +* Add interruptibility support using [`interruptible`] through `CmdCtxBuilder::with_interruptibility`. ([#141], [#163]) + + +[`interruptible`]: https://github.com/azriel91/interruptible +[#141]: https://github.com/azriel91/peace/issues/141 +[#163]: https://github.com/azriel91/peace/pull/163 + + ## 0.0.11 (2023-06-27) * Add `CmdBase` and `CmdIndependence` for easier command composition. ([#120], [#130])