diff --git a/CHANGELOG.md b/CHANGELOG.md index cff3f44..78851c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.9.3 (12 Nov 2021) +- [fix] add `Maybe.fromEmpty` to typings -- thanks to @tomecko ( #246 ) + ## 0.9.2 (05 Mar 2021) - [new] add `apTo` to all Applicatives -- thanks to @iLikeKoffee ( #233 ) - [new] add `lookup` and `nth` to lists -- thanks to @mlrv ( #241 ) @@ -71,7 +74,7 @@ - [new] add `.orNull()` to Maybe -- thanks to @emmanueltouzery ( #86 ) - [fix] fix typings to work with `--noImplicitAny` - [fix] fix typings to work with `--strictNullChecks` -- thanks to @emmanueltouzery ( #86 ) - + ### alpha.2 - [fix] fix List's `.size()` ( #79 ) @@ -115,4 +118,4 @@ export function getStoredData(key: string): Maybe { ## 0.8.7 -- [new] add `.cata(…)` to Maybe -- thanks to Crisson Jno-Charles @crisson +- [new] add `.cata(…)` to Maybe -- thanks to Crisson Jno-Charles @crisson diff --git a/README.md b/README.md index e3ac037..343eca5 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Full detailed documentation can be found [here](https://github.com/monet/monet.j npm install monet --save # or to install a specific version -npm install monet@0.9.2 +npm install monet@0.9.3 ``` ### Download @@ -86,7 +86,7 @@ Please see [Ken Scambler](http://twitter.com/KenScambler)'s [excellent talk](htt Written and maintained by Chris Myers [@cwmyers](https://twitter.com/cwmyers) and Jakub Strojewski [@ulfryk](https://twitter.com/ulfryk). Follow Monet.js at [@monetjs](http://twitter.com/monetjs). [functionalJava]: http://functionaljava.org/ -[gitZip]: https://github.com/monet/monet.js/archive/v0.9.2.zip -[gitTar]: https://github.com/monet/monet.js/archive/v0.9.2.tar.gz +[gitZip]: https://github.com/monet/monet.js/archive/v0.9.3.zip +[gitTar]: https://github.com/monet/monet.js/archive/v0.9.3.tar.gz [npm]: https://www.npmjs.com/ [scalaz]: https://github.com/scalaz/scalaz diff --git a/package-lock.json b/package-lock.json index 8cef74d..6e26699 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "monet", - "version": "0.9.2", + "version": "0.9.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 1d27c70..355d752 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ ], "name": "monet", "description": "Monadic types library for JavaScript", - "version": "0.9.2", + "version": "0.9.3", "homepage": "https://monet.github.io/monet.js/", "repository": { "type": "git", diff --git a/src/monet-pimp.js b/src/monet-pimp.js index daa37d3..5bea632 100644 --- a/src/monet-pimp.js +++ b/src/monet-pimp.js @@ -1,5 +1,5 @@ /** - * monet-pimp.js 0.9.2 + * monet-pimp.js 0.9.3 * * This file needs to be included after monet.js * diff --git a/src/monet.js b/src/monet.js index dd93c87..6ce5d83 100644 --- a/src/monet.js +++ b/src/monet.js @@ -1,5 +1,5 @@ /** - * Monet.js 0.9.2 + * Monet.js 0.9.3 * * (c) 2012-2021 Chris Myers * @license Monet.js may be freely distributed under the MIT license.