Skip to content

Commit f2ec45f

Browse files
authored
Merge pull request #247 from tomecko/release/v0.9.3
v0.9.3
2 parents a9c03f5 + 623a794 commit f2ec45f

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 0.9.3 (12 Nov 2021)
4+
- [fix] add `Maybe.fromEmpty` to typings -- thanks to @tomecko ( #246 )
5+
36
## 0.9.2 (05 Mar 2021)
47
- [new] add `apTo` to all Applicatives -- thanks to @iLikeKoffee ( #233 )
58
- [new] add `lookup` and `nth` to lists -- thanks to @mlrv ( #241 )
@@ -71,7 +74,7 @@
7174
- [new] add `.orNull()` to Maybe -- thanks to @emmanueltouzery ( #86 )
7275
- [fix] fix typings to work with `--noImplicitAny`
7376
- [fix] fix typings to work with `--strictNullChecks` -- thanks to @emmanueltouzery ( #86 )
74-
77+
7578
### alpha.2
7679

7780
- [fix] fix List's `.size()` ( #79 )
@@ -115,4 +118,4 @@ export function getStoredData(key: string): Maybe<SomeData> {
115118

116119
## 0.8.7
117120

118-
- [new] add `.cata(…)` to Maybe -- thanks to Crisson Jno-Charles @crisson
121+
- [new] add `.cata(…)` to Maybe -- thanks to Crisson Jno-Charles @crisson

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Full detailed documentation can be found [here](https://github.com/monet/monet.j
2222
npm install monet --save
2323

2424
# or to install a specific version
25-
npm install monet@0.9.2
25+
npm install monet@0.9.3
2626
```
2727

2828
### Download
@@ -86,7 +86,7 @@ Please see [Ken Scambler](http://twitter.com/KenScambler)'s [excellent talk](htt
8686
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).
8787

8888
[functionalJava]: http://functionaljava.org/
89-
[gitZip]: https://github.com/monet/monet.js/archive/v0.9.2.zip
90-
[gitTar]: https://github.com/monet/monet.js/archive/v0.9.2.tar.gz
89+
[gitZip]: https://github.com/monet/monet.js/archive/v0.9.3.zip
90+
[gitTar]: https://github.com/monet/monet.js/archive/v0.9.3.tar.gz
9191
[npm]: https://www.npmjs.com/
9292
[scalaz]: https://github.com/scalaz/scalaz

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"name": "monet",
1313
"description": "Monadic types library for JavaScript",
14-
"version": "0.9.2",
14+
"version": "0.9.3",
1515
"homepage": "https://monet.github.io/monet.js/",
1616
"repository": {
1717
"type": "git",

src/monet-pimp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* monet-pimp.js 0.9.2
2+
* monet-pimp.js 0.9.3
33
*
44
* This file needs to be included after monet.js
55
*

src/monet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Monet.js 0.9.2
2+
* Monet.js 0.9.3
33
*
44
* (c) 2012-2021 Chris Myers
55
* @license Monet.js may be freely distributed under the MIT license.

0 commit comments

Comments
 (0)