Skip to content

Commit

Permalink
v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Strojewski committed Mar 5, 2021
1 parent 28f08db commit c8534aa
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 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 )
- [enhancement] change Maybe `filter` and `filterNot` to work as type guard -- thanks to @mlrv ( #240 )

## 0.9.1 (15 Jan 2020)
- [new] add `fromPromise` and `toPromise` to `Either` -- thanks to @wookieb ( #223 )
- [fix] fix `.isInstance` method -- thanks to @wookieb ( #221 )
Expand Down
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
# monet.js

[![Build Status](https://travis-ci.org/monet/monet.js.svg)](https://travis-ci.org/monet/monet.js)


For people who wish they didn't have to program in JavaScript. [documentation](https://github.com/monet/monet.js/tree/master/docs/README.md)


## Introduction

Monet is a library designed to bring great power to your JavaScript programming. It is a tool bag that assists Functional Programming by providing a rich set of Monads and other useful functions.
Expand All @@ -26,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.1
npm install monet@0.9.2
```

### Download
Expand Down Expand Up @@ -90,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.1.zip
[gitTar]: https://github.com/monet/monet.js/archive/v0.9.1.tar.gz
[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
[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
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"name": "monet",
"description": "Monadic types library for JavaScript",
"version": "0.9.1",
"version": "0.9.2",
"homepage": "https://monet.github.io/monet.js/",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions src/monet-pimp.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/**
* monet-pimp.js 0.9.0-rc.1
* monet-pimp.js 0.9.2
*
* This file needs to be included after monet.js
*
* (c) 2012-2018 Chris Myers
* (c) 2012-2021 Chris Myers
* @license Monet-pimp.js may be freely distributed under the MIT license.
* For all details and documentation:
* https://monet.github.io/monet.js/
Expand All @@ -14,7 +14,7 @@

/* eslint-disable-next-line complexity */
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
if (typeof define === 'function' && define.amd) {
define(['monet'], factory)
} else if (typeof module === 'object' && module.exports) {
module.exports = factory(require('monet'), root)
Expand Down
4 changes: 2 additions & 2 deletions src/monet.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Monet.js 0.9.1
* Monet.js 0.9.2
*
* (c) 2012-2018 Chris Myers
* (c) 2012-2021 Chris Myers
* @license Monet.js may be freely distributed under the MIT license.
* For all details and documentation:
* https://monet.github.io/monet.js/
Expand Down

0 comments on commit c8534aa

Please sign in to comment.