Skip to content

Commit ad4186d

Browse files
committed
Release 0.9.0-alpha.0
1 parent f9e5822 commit ad4186d

File tree

6 files changed

+17
-8
lines changed

6 files changed

+17
-8
lines changed

.npmignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.gitignore
2+
.travis.yml
3+
bower.json
4+
CONTRIBUTING.md
5+
karma.conf.js
6+
tsconfig.json
7+
8+
src/
9+
test/

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Using [bower]:
3737

3838
or to install a specific version
3939

40-
bower install monet#0.8.10
40+
bower install monet#0.9.0-alpha.0
4141

4242
### Node installation
4343
Using [npm]:
@@ -46,7 +46,7 @@ Using [npm]:
4646

4747
or to install a specific version
4848

49-
npm install monet@0.8.10
49+
npm install monet@0.9.0-alpha.0
5050

5151
## A note on types
5252

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

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

830830

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

943-
The `Reader` monad provides a way to "weave" your configuration throughout your programme.
943+
The `Reader` monad provides a way to "weave" your configuration throughout your programme.
944944

945945
### Creating a Reader
946946

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "monet",
3-
"version": "0.8.10",
3+
"version": "0.9.0-alpha.0",
44
"main": "src/main/javascript/monet.js",
55
"ignore": [
66
"**/.*",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"name": "monet",
77
"description": "Monadic types library for JavaScript",
8-
"version": "0.8.10",
8+
"version": "0.9.0-alpha.0",
99
"homepage": "https://github.com/cwmyers/monet.js",
1010
"repository": {
1111
"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.8.10
2+
* monet-pimp.js 0.9.0-alpha.0
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.8.10
2+
* Monet.js 0.9.0-alpha.0
33
*
44
* (c) 2012-2016 Chris Myers
55
* @license Monet.js may be freely distributed under the MIT license.

0 commit comments

Comments
 (0)