diff --git a/README.md b/README.md index f0909b8..df37525 100644 --- a/README.md +++ b/README.md @@ -560,6 +560,17 @@ The goal of this project is to provide an awesome tool for developers to test th Commit and code reviews, ideas and documentation improvements are welcomed. +Changelog +--------- + +### 0.2 + +* [74aee9c](https://github.com/StanAngeloff/lotte/commit/74aee9c) - Drop 'findit' and use 'walkdir', support Windows. +* [4ab5679](https://github.com/StanAngeloff/lotte/commit/4ab5679) - Bump dependencies versions in package.json and address deprecations. +* [8a49077](https://github.com/StanAngeloff/lotte/commit/8a49077) - Address deprecation "`path.exists` is now called `fs.exists`." +* [1189ae6](https://github.com/StanAngeloff/lotte/commit/1189ae6) - Add (verified) support for PhantomJS 1.6.x. +* [4c9d441](https://github.com/StanAngeloff/lotte/commit/4c9d441) - Emit 'compile' to allow hooks to modify the code before it's compiled. + ### Copyright > Copyright (c) 2011 Stan Angeloff. See [LICENSE.md](https://github.com/StanAngeloff/lotte/blob/master/LICENSE.md) for details. diff --git a/bin/cli.js b/bin/cli.js index 8dab043..354dd28 100755 --- a/bin/cli.js +++ b/bin/cli.js @@ -88,7 +88,7 @@ if (defaults.help) { process.exit(0); } if (defaults.version) { - console.log('%s %s', defaults.$0, '0.1.2-2'); + console.log('%s %s', defaults.$0, '0.2'); process.exit(0); } diff --git a/package.json b/package.json index f6e8f6a..5d99841 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { "name": "lotte", - "version": "0.1.2-2", + "version": "0.2", "description": "Headless, automated browser testing using PhantomJS", "homepage": "https://github.com/StanAngeloff/lotte", "bugs": "https://github.com/StanAngeloff/lotte/issues",