Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mdwragg committed Feb 13, 2016
1 parent 479145a commit 745f4ee
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 25 deletions.
10 changes: 10 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,15 @@ module.exports = function (grunt) {
logConcurrentOutput: true
}
}
},

bump: {
options:{
files: ['bower.json', 'package.json'],
updateConfigs: [],
commitFiles: ['-a'],
push: false
}
}
});

Expand All @@ -115,6 +124,7 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-dep-serve');
grunt.loadNpmTasks('grunt-autoprefixer');
grunt.loadNpmTasks('grunt-concurrent');
grunt.loadNpmTasks('grunt-bump');


// Default task.
Expand Down
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v0.0.1
==================
* Initial release

v1.0.0
==================
* Now possible to set a column as 'editable' and allow the cell to be selected and the content edited.
* Per-cell validation is now possible. As a cell is edited and the change accepted a (developer supplied) validation routine is executed, a cell will be marked as invalid if it fails the validation routine.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "px-data-table",
"version": "0.3.1",
"version": "1.0.0",
"main": [
"px-data-table.html"
],
Expand Down
48 changes: 24 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"name": "px-data-table",
"author": "General Electric",
"description": "A Px component",
"version": "0.3.1",
"private": true,
"extName" : null,
"repository" :
{
"type": "git",
"url": "https://github.com/PredixDev/px-data-table.git"
},
"homepage": "http://predix.io/",
"devDependencies": {
"grunt": "~v0.4.5",
"grunt-sass": "^v1.0.0",
"grunt-shell": "~v1.1.1",
"grunt-contrib-clean": "~v0.6.0",
"grunt-contrib-jshint": "~v0.10.0",
"grunt-contrib-watch": "~v0.6.1",
"grunt-dep-serve": "git+https://github.com/GeneralElectric/grunt-dep-serve.git#master",
"grunt-autoprefixer": "^3.0.3",
"node-sass-import-once": "^1.2.0",
"grunt-concurrent": "^2.0.1"
}
"name": "px-data-table",
"author": "General Electric",
"description": "A Px component",
"version": "1.0.0",
"private": true,
"extName": null,
"repository": {
"type": "git",
"url": "https://github.com/PredixDev/px-data-table.git"
},
"homepage": "http://predix.io/",
"devDependencies": {
"grunt": "~v0.4.5",
"grunt-autoprefixer": "^3.0.3",
"grunt-bump": "^0.7.0",
"grunt-concurrent": "^2.0.1",
"grunt-contrib-clean": "~v0.6.0",
"grunt-contrib-jshint": "~v0.10.0",
"grunt-contrib-watch": "~v0.6.1",
"grunt-dep-serve": "git+https://github.com/GeneralElectric/grunt-dep-serve.git#master",
"grunt-sass": "^v1.0.0",
"grunt-shell": "~v1.1.1",
"node-sass-import-once": "^1.2.0"
}
}

0 comments on commit 745f4ee

Please sign in to comment.