From a6e3b6eaf9f9d38d3c8bc37f451fcd77d69e15c1 Mon Sep 17 00:00:00 2001 From: Simon Richardson Date: Tue, 3 Sep 2013 21:34:53 +0100 Subject: [PATCH] Updating for release 0.0.3 - Updating CHANGES.md - Updating Gruntfile and package.json - Update test/lib/test.js to include the right path. --- .gitignore | 2 ++ .npmignore | 1 + CHANGES.md | 18 +++++++++++++++++- Gruntfile.js | 8 ++++---- package.json | 2 +- test/lib/test.js | 2 +- 6 files changed, 26 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index a43f38a..3b886de 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ bin coverage docs node_modules +tags +lib/squishy-pants*.js diff --git a/.npmignore b/.npmignore index 9f47299..7b79663 100644 --- a/.npmignore +++ b/.npmignore @@ -3,3 +3,4 @@ coverage docs node_modules +tags diff --git a/CHANGES.md b/CHANGES.md index cc2a8b5..0c535b5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,2 +1,18 @@ Changes -======= \ No newline at end of file +======= + +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 diff --git a/Gruntfile.js b/Gruntfile.js index ed911d5..b7ec413 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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' ] } @@ -16,7 +16,7 @@ module.exports = function (grunt) { jshint: { all: [ 'Gruntfile.js', - 'bin/squishy-pants.js', + 'lib/squishy-pants.js', 'src/*.js', 'test/*.js' ] @@ -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'] } } }, diff --git a/package.json b/package.json index 16052a9..5b46296 100644 --- a/package.json +++ b/package.json @@ -21,5 +21,5 @@ "grunt-parallel": "~0.2.0" }, "main": "squishy-pants.js", - "version": "0.0.2" + "version": "0.0.3" } diff --git a/test/lib/test.js b/test/lib/test.js index 3caca06..4db9018 100644 --- a/test/lib/test.js +++ b/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) {