From f2b57041170922b5f98a1b3430a1e5c24511741a Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Mon, 20 Mar 2023 14:38:05 -0500 Subject: [PATCH] Release 0.1.5 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67b96bc..6156eb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog +## \[0.1.5] + - migrate from Deno.test to BDD https://deno.com/blog/v1.21#bdd-style-testing +- fix bug where continuations were not re-raising the same error when invoked + multiple times https://github.com/thefrontside/continuation/pull/9 +- add a `.tail()` method to both `resolve` and `reject` continuations that will + re-use the currently executing reduction loop rather than calling reduce + recursively and adding another JS call frame to the stack. + https://github.com/thefrontside/continuation/pull/11 ## \[0.1.4]