Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 1.23 KB

CHANGELOG.md

File metadata and controls

43 lines (27 loc) · 1.23 KB

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 #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. #11

[0.1.4]

  • now that automatic cross releasing is working for both deno.land/x and npmjs.org, this has both release matching the exact same commit.

[0.1.3]

  • debugging cross release to both deno.land/x and npm, do not use.

[0.1.2]

  • re-release since npm and deno.land had different versions

[0.1.1]

  • include README.md in NPM release

[0.1.0]

  • add support for raising errors within a continuation

[0.0.2]

  • include sourcemaps for npm distribution
  • support iterative evaluation instead of recursive evaluation. This means that stacktraces are considerably smaller whenever an evaluation resumes

[0.0.1]

  • initial release, support for one-shot evaluate, reset, shift with no way to raise errors