Skip to content

Commit

Permalink
0.9.0-alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ulfryk committed Jun 19, 2017
1 parent e7acb64 commit 7f68174
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 8 deletions.
5 changes: 5 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
.gitignore
.travis.yml
.eslintrc.json
.npmignore

bower.json
CONTRIBUTING.md
karma.conf.js
tsconfig.json

docs/
example/
scripts/
src/
test/
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

## 0.9.0

### alpha.4 (19 Jun 2017)

- [fix] pre publish build

### alpha.3 (19 Jun 2017)

- [enhancement] make `.chain()` compatible with Fantasy Land
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Simply download and add to your html pages or we also support [bower]. You can a
bower install monet --save
# or to install a specific version
bower install monet#0.9.0-alpha.3
bower install monet#0.9.0-alpha.4
```
### NPM installation
Expand All @@ -45,7 +45,7 @@ bower install monet#0.9.0-alpha.3
npm install monet --save
# or to install a specific version
npm install monet@0.9.0-alpha.3
npm install monet@0.9.0-alpha.4
```
## Contents
Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "monet",
"version": "0.9.0-alpha.3",
"main": "src/main/javascript/monet.js",
"version": "0.9.0-alpha.4",
"main": "dist/monet.js",
"ignore": [
"**/.*",
"node_modules",
Expand Down
4 changes: 2 additions & 2 deletions 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.9.0-alpha.3",
"version": "0.9.0-alpha.4",
"homepage": "https://monet.github.io/monet.js/",
"repository": {
"type": "git",
Expand Down Expand Up @@ -44,6 +44,6 @@
"copy:monet-pimp": "./node_modules/.bin/uglifyjs src/monet-pimp.js -o dist/monet-pimp.js --lint --comments -b bracketize=true",
"copy": "npm run copy:monet && npm run copy:monet-pimp && npm run copy:types",
"build": "rm -Rf ./dist && mkdir dist/ && npm run copy && npm run minify",
"publish": "npm run build"
"prepublish": "npm run build"
}
}
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.9.0-alpha.3
* monet-pimp.js 0.9.0-alpha.4
*
* 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.9.0-alpha.3
* Monet.js 0.9.0-alpha.4
*
* (c) 2012-2017 Chris Myers
* @license Monet.js may be freely distributed under the MIT license.
Expand Down

0 comments on commit 7f68174

Please sign in to comment.