diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ae8183..ded84c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,16 @@ # Changelog +## 0.1.0 — 2014-05-04 +- Fix Windows issues: execute native commands, execute *.js files. +- You can pass a standard callback. Instead of returning a Q.promise the return will be `undefined`. +- Adds basic tests. + ## 0.0.2 — 2014-04-28 - Remove stdout capture for stdio 'inherit'. It removed color from the output and broke Inquirer.js' 'checkbox' prompt. And it is not what the user expects anyway, even though it would be very nice to have. ## 0.0.1 — 2014-04-26 - Copy Apache Cordova coho's [superspawn.js](https://github.com/apache/cordova-coho/blob/c114399a7c6d03f805ffccf6b7ed74e2cb2c6b74/src/superspawn.js -). Add npm/node module stuff. +). +- Add npm/node module stuff. - Fix a stdio config bug. - Replace shelljs(.which) with module 'which'. diff --git a/README.md b/README.md index 5f6efee..d9163b2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -[![Build status (master)](http://b.adge.me/travis/MarcDiethelm/superspawn.svg)](https://travis-ci.org/MarcDiethelm/superspawn)   ![npm version](http://b.adge.me/npm/v/superspawn.svg) +[![Build status (master)](http://b.adge.me/travis/MarcDiethelm/superspawn/master.svg)](https://travis-ci.org/MarcDiethelm/superspawn)   ![npm version](http://b.adge.me/npm/v/superspawn.svg) superspawn -======= +========== ###### A Node.js spawn command that works on Windows too. diff --git a/package.json b/package.json index 70a82af..e285f7d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "superspawn", - "version": "0.0.2", + "version": "0.1.0", "description": "A Node.js spawn command that works on Windows too", "main": "lib/index.js", "scripts": {