Skip to content

Commit

Permalink
Merge pull request #247 from tomecko/release/v0.9.3
Browse files Browse the repository at this point in the history
v0.9.3
  • Loading branch information
ulfryk committed Nov 13, 2021
2 parents a9c03f5 + 623a794 commit f2ec45f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
7 changes: 5 additions & 2 deletions 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 )
Expand Down Expand Up @@ -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 )
Expand Down Expand Up @@ -115,4 +118,4 @@ export function getStoredData(key: string): Maybe<SomeData> {

## 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
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion 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
*
Expand Down
2 changes: 1 addition & 1 deletion 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.
Expand Down

0 comments on commit f2ec45f

Please sign in to comment.