Skip to content
This repository has been archived by the owner on Jun 15, 2021. It is now read-only.

Commit

Permalink
Updating for release 0.0.3
Browse files Browse the repository at this point in the history
- Updating CHANGES.md
- Updating Gruntfile and package.json
- Update test/lib/test.js to include the right path.
  • Loading branch information
Simon Richardson committed Sep 3, 2013
1 parent 071cbfa commit a6e3b6e
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -4,3 +4,5 @@ bin
coverage
docs
node_modules
tags
lib/squishy-pants*.js
1 change: 1 addition & 0 deletions .npmignore
Expand Up @@ -3,3 +3,4 @@
coverage
docs
node_modules
tags
18 changes: 17 additions & 1 deletion CHANGES.md
@@ -1,2 +1,18 @@
Changes
=======
=======

0.0.3 - 03/09/2013
- #23 Fix downloading of npm releases.
- #22 Implement Do types
- #20 Pick chain or flatMap for method names.
- #19 Implement Writer Monad

0.0.2 - 29/08/2013
- #17 Implement lazy and lazyAsync
- #15 Fix arb isAttemptOf and attempt
- #14 Expose taggedSum types out in the library
- #13 Implement List
- #12 Performance of unit tests are really slow

0.0.1 - 23/08/2013
- Initial Release
8 changes: 4 additions & 4 deletions Gruntfile.js
Expand Up @@ -7,7 +7,7 @@ module.exports = function (grunt) {
banner: '/* Compiled : <%= grunt.template.today("yyyy-mm-dd HH:MM") %> */\n'
},
files: {
'bin/squishy-pants.js': [
'lib/squishy-pants.js': [
'lib/rigger/rigger.js'
]
}
Expand All @@ -16,7 +16,7 @@ module.exports = function (grunt) {
jshint: {
all: [
'Gruntfile.js',
'bin/squishy-pants.js',
'lib/squishy-pants.js',
'src/*.js',
'test/*.js'
]
Expand All @@ -30,10 +30,10 @@ module.exports = function (grunt) {
all: {
options: {
beautify: false,
sourceMap: 'bin/squishy-pants.min.map.js'
sourceMap: 'lib/squishy-pants.min.map.js'
},
files: {
'bin/squishy-pants.min.js': ['bin/squishy-pants.js']
'lib/squishy-pants.min.js': ['lib/squishy-pants.js']
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -21,5 +21,5 @@
"grunt-parallel": "~0.2.0"
},
"main": "squishy-pants.js",
"version": "0.0.2"
"version": "0.0.3"
}
2 changes: 1 addition & 1 deletion test/lib/test.js
@@ -1,4 +1,4 @@
var _ = require('../../bin/squishy-pants');
var _ = require('../../lib/squishy-pants');

_ = _
.property('check', _.curry(function(property, args, test) {
Expand Down

0 comments on commit a6e3b6e

Please sign in to comment.