Skip to content

Commit

Permalink
Handsontable 0.8.12
Browse files Browse the repository at this point in the history
  • Loading branch information
warpech committed Mar 12, 2013
1 parent 292e195 commit fe23bed
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 16 deletions.
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.handsontable.full.css
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
6 changes: 3 additions & 3 deletions dist/jquery.handsontable.full.js
Original file line number Diff line number Diff line change
@@ -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 */

Expand Down Expand Up @@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion handsontable.jquery.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "handsontable",
"title": "Handsontable",
"version": "0.8.11",
"version": "0.8.12",
"author": {
"name": "Marcin Warpechowski",
"email": "[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions jquery.handsontable.css
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
6 changes: 3 additions & 3 deletions jquery.handsontable.js
Original file line number Diff line number Diff line change
@@ -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 */

Expand Down Expand Up @@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"url": "https://github.com/warpech/jquery-handsontable/issues"
},
"author": "Marcin Warpechowski <[email protected]>",
"version": "0.8.11",
"version": "0.8.12",
"devDependencies": {
"grunt": "~0.4.0",
"grunt-replace": "~0.4.0",
Expand Down

0 comments on commit fe23bed

Please sign in to comment.