From fe23bed521ca4d85156d4ef2a561a48e4c53945d Mon Sep 17 00:00:00 2001 From: Marcin Warpechowski Date: Tue, 12 Mar 2013 02:40:36 +0100 Subject: [PATCH] Handsontable 0.8.12 --- CHANGELOG.md | 9 +++++---- dist/jquery.handsontable.full.css | 4 ++-- dist/jquery.handsontable.full.js | 6 +++--- handsontable.jquery.json | 2 +- jquery.handsontable.css | 4 ++-- jquery.handsontable.js | 6 +++--- package.json | 2 +- 7 files changed, 17 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16f192765b6..09a6c86c38d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,12 @@ -## HEAD +## [0.8.12](https://github.com/warpech/jquery-handsontable/tree/v0.8.12) (Mar 12, 2013) + +This release doesn't really bring any improvements for the end user but is a big step towards test automation. From now on, a push to the `master` branch triggers a [Travis CI](https://travis-ci.org/warpech/jquery-handsontable) build that performs automated testing using [grunt-contrib-jasmine](https://github.com/gruntjs/grunt-contrib-jasmine). Thanks @bollwyvl for your [help](https://github.com/warpech/jquery-handsontable/pull/474)! + +As a side effect, tests are now be runnable using PhantomJS. To run the test suite in PhantomJS, type `grunt test` (first run `npm install` to make sure you have all dependencies installed). PhantomJS runs the test suite much faster than desktop browsers, so it may come handy. Bugfixes: - `destroy` method now clears all pending timeouts -Other: -- Test should now be runnable using PhantomJS. To run test suite in PhantomJS, type `grunt test`. This is primarly targeted to be used by Travis CI, but there is also a nice benefit of using it while development. PhantomJS runs the test suite much faster than desktop browsers. - ## [0.8.11](https://github.com/warpech/jquery-handsontable/tree/v0.8.11) (Mar 8, 2013) Features: diff --git a/dist/jquery.handsontable.full.css b/dist/jquery.handsontable.full.css index 7f437e6592a..181819be020 100644 --- a/dist/jquery.handsontable.full.css +++ b/dist/jquery.handsontable.full.css @@ -1,12 +1,12 @@ /** - * Handsontable 0.8.11 + * Handsontable 0.8.12 * Handsontable is a simple jQuery plugin for editable tables with basic copy-paste compatibility with Excel and Google Docs * * Copyright 2012, Marcin Warpechowski * Licensed under the MIT license. * http://handsontable.com/ * - * Date: Tue Mar 12 2013 02:15:16 GMT+0100 (Central European Standard Time) + * Date: Tue Mar 12 2013 02:29:43 GMT+0100 (Central European Standard Time) */ .handsontable { diff --git a/dist/jquery.handsontable.full.js b/dist/jquery.handsontable.full.js index 59ba03e0d47..4250da58bbe 100644 --- a/dist/jquery.handsontable.full.js +++ b/dist/jquery.handsontable.full.js @@ -1,12 +1,12 @@ /** - * Handsontable 0.8.11 + * Handsontable 0.8.12 * Handsontable is a simple jQuery plugin for editable tables with basic copy-paste compatibility with Excel and Google Docs * * Copyright 2012, Marcin Warpechowski * Licensed under the MIT license. * http://handsontable.com/ * - * Date: Tue Mar 12 2013 02:15:16 GMT+0100 (Central European Standard Time) + * Date: Tue Mar 12 2013 02:29:43 GMT+0100 (Central European Standard Time) */ /*jslint white: true, browser: true, plusplus: true, indent: 4, maxerr: 50 */ @@ -2035,7 +2035,7 @@ Handsontable.Core = function (rootElement, settings) { /** * Handsontable version */ - this.version = '0.8.11'; //inserted by grunt from package.json + this.version = '0.8.12'; //inserted by grunt from package.json }; var settings = { diff --git a/handsontable.jquery.json b/handsontable.jquery.json index 43f16d618bb..fe7f0641660 100644 --- a/handsontable.jquery.json +++ b/handsontable.jquery.json @@ -1,7 +1,7 @@ { "name": "handsontable", "title": "Handsontable", - "version": "0.8.11", + "version": "0.8.12", "author": { "name": "Marcin Warpechowski", "email": "marcin@nextgen.pl", diff --git a/jquery.handsontable.css b/jquery.handsontable.css index 0e45c56dad5..7b0835b57ff 100644 --- a/jquery.handsontable.css +++ b/jquery.handsontable.css @@ -1,12 +1,12 @@ /** - * Handsontable 0.8.11 + * Handsontable 0.8.12 * Handsontable is a simple jQuery plugin for editable tables with basic copy-paste compatibility with Excel and Google Docs * * Copyright 2012, Marcin Warpechowski * Licensed under the MIT license. * http://handsontable.com/ * - * Date: Tue Mar 12 2013 02:15:16 GMT+0100 (Central European Standard Time) + * Date: Tue Mar 12 2013 02:29:43 GMT+0100 (Central European Standard Time) */ .handsontable { diff --git a/jquery.handsontable.js b/jquery.handsontable.js index 9fbe351e5e7..11bbe1dc577 100644 --- a/jquery.handsontable.js +++ b/jquery.handsontable.js @@ -1,12 +1,12 @@ /** - * Handsontable 0.8.11 + * Handsontable 0.8.12 * Handsontable is a simple jQuery plugin for editable tables with basic copy-paste compatibility with Excel and Google Docs * * Copyright 2012, Marcin Warpechowski * Licensed under the MIT license. * http://handsontable.com/ * - * Date: Tue Mar 12 2013 02:15:16 GMT+0100 (Central European Standard Time) + * Date: Tue Mar 12 2013 02:29:43 GMT+0100 (Central European Standard Time) */ /*jslint white: true, browser: true, plusplus: true, indent: 4, maxerr: 50 */ @@ -2035,7 +2035,7 @@ Handsontable.Core = function (rootElement, settings) { /** * Handsontable version */ - this.version = '0.8.11'; //inserted by grunt from package.json + this.version = '0.8.12'; //inserted by grunt from package.json }; var settings = { diff --git a/package.json b/package.json index a8c4c26cd9a..27fdf54edbb 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "url": "https://github.com/warpech/jquery-handsontable/issues" }, "author": "Marcin Warpechowski ", - "version": "0.8.11", + "version": "0.8.12", "devDependencies": { "grunt": "~0.4.0", "grunt-replace": "~0.4.0",