Skip to content

Commit

Permalink
Release 0.9.0-alpha.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ulfryk committed Oct 24, 2016
1 parent f9e5822 commit ad4186d
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 8 deletions.
9 changes: 9 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.gitignore
.travis.yml
bower.json
CONTRIBUTING.md
karma.conf.js
tsconfig.json

src/
test/
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Using [bower]:

or to install a specific version

bower install monet#0.8.10
bower install monet#0.9.0-alpha.0

### Node installation
Using [npm]:
Expand All @@ -46,7 +46,7 @@ Using [npm]:

or to install a specific version

npm install monet@0.8.10
npm install monet@0.9.0-alpha.0

## A note on types

Expand Down Expand Up @@ -824,7 +824,7 @@ Performs a fold right across the non empty list. Similar to `foldLeft` except t
Reduces a `NonEmptyList` of type `A` down to a single `A`.

var nonEmptyList = NonEmptyList(1, [2,3,4].list())
nonEmptyList.reduceLeft(function (a,b) {return a+b})
nonEmptyList.reduceLeft(function (a,b) {return a+b})
// result: 10


Expand Down Expand Up @@ -940,7 +940,7 @@ It becomes much clearer which functions deal with IO and which functions simply
The `Reader` monad is a wonderful solution to inject dependencies into your functions. There are plenty of great resources to get your
teeth into the `Reader` monad such as [these great talks](http://functionaltalks.org/tag/reader-monad/).

The `Reader` monad provides a way to "weave" your configuration throughout your programme.
The `Reader` monad provides a way to "weave" your configuration throughout your programme.

### Creating a Reader

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "monet",
"version": "0.8.10",
"version": "0.9.0-alpha.0",
"main": "src/main/javascript/monet.js",
"ignore": [
"**/.*",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
],
"name": "monet",
"description": "Monadic types library for JavaScript",
"version": "0.8.10",
"version": "0.9.0-alpha.0",
"homepage": "https://github.com/cwmyers/monet.js",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/monet-pimp.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* monet-pimp.js 0.8.10
* monet-pimp.js 0.9.0-alpha.0
*
* This file needs to be included after monet.js
*
Expand Down
2 changes: 1 addition & 1 deletion src/monet.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Monet.js 0.8.10
* Monet.js 0.9.0-alpha.0
*
* (c) 2012-2016 Chris Myers
* @license Monet.js may be freely distributed under the MIT license.
Expand Down

0 comments on commit ad4186d

Please sign in to comment.