Skip to content

Releases: kofno/resulty

v6.2.0

04 Apr 17:56
Compare
Choose a tag to compare

What's Changed

  • Fix assign for other definitions of Result by @pjrebsch in #13

New Contributors

Full Changelog: v6.0.0...v6.2.0

First release for Deno

14 Dec 12:34
Compare
Choose a tag to compare

Rewrote the logic to use a single class to represent Ok and Err. Internal data structure of the class may eventually be used to implement a function based implementation that could be opted into in the future.

Full Changelog: v3.0.0...v6.0.0

v3.0.0

22 Nov 14:32
Compare
Choose a tag to compare

3.0.0 (2019-11-22)

Features

  • elseDo: Side effects for failed computations (d6f22a2)

BREAKING CHANGES

  • elseDo: ap has been removed

v2.2.0

10 Jun 14:34
Compare
Choose a tag to compare

2.2.0 (2018-06-10)

Bug Fixes

  • assign: Use map internally (dec4cac)

Features

v2.1.0

27 May 22:27
Compare
Choose a tag to compare

2.1.0 (2018-05-27)

Features

v2.0.1

17 Dec 15:32
Compare
Choose a tag to compare

2.0.1 (2017-12-17)

Bug Fixes

  • packaging: Changes the packaging w/ the code at the root (0e80c14)

v2.0.0

17 Dec 14:17
Compare
Choose a tag to compare

2.0.0 (2017-12-17)

Features

  • getOrElse: Makes getOrElse lazy (015d481)

BREAKING CHANGES

  • getOrElse: getOrElse is now lazy. To get the old getOrElse behavior, use getOrElseValue.

Also, the types are now much more explicit, which should lead to fewer typing misses in client code.