diff --git a/CHANGELOG.md b/CHANGELOG.md index fb8176d..107af14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ -# 1.4.0 / Unreleased +# 1.4.1 / Unreleased + +# 1.4.0 / 2014-06-22 * [FEATURE] Support bower. * [BUGFIX] #58: 'replaceMenu' in beforeOpen causing select: to lose ui.target diff --git a/Gruntfile.coffee b/Gruntfile.coffee index bd95e81..65582d4 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -92,11 +92,12 @@ module.exports = (grunt) -> run_test: { tasks: ['test'] } bump: {} # 'bump' also uses the increment mode `yabs:release:MODE` run_build: { tasks: ['build'] } - commit: {} + commit: { add: '.' } tag: {} - # push: {} - # bump_develop: { inc: 'prepatch' } - # commit_develop: { message: 'Bump for prerelease ({%= version %})' } + push: { tags: true } + bump_develop: { inc: 'prepatch' } + commit_develop: { message: 'Bump prerelease ({%= version %}) [ci skip]' } + push_develop: {} # Load "grunt*" dependencies diff --git a/package.json b/package.json index a0d808d..42cd6a0 100644 --- a/package.json +++ b/package.json @@ -4,51 +4,51 @@ "title": "jQuery UI context menu plugin", "description": "Turn a jQuery UI Menu widget into a contextmenu.", "keywords": [ - "context-menu", - "contextmenu", - "delegate", - "jquery-ui-menu", - "menu", - "navigation", - "popup", - "right-click", - "right-click-menu" + "context-menu", + "contextmenu", + "delegate", + "jquery-ui-menu", + "menu", + "navigation", + "popup", + "right-click", + "right-click-menu" ], "author": { - "name": "Martin Wendt", - "email": "jquery@wwwendt.de", - "url": "http://careers.stackoverflow.com/martin-wendt" + "name": "Martin Wendt", + "email": "jquery@wwwendt.de", + "url": "http://careers.stackoverflow.com/martin-wendt" }, "repository": { - "type": "git", - "url": "https://github.com/mar10/jquery-ui-contextmenu" + "type": "git", + "url": "https://github.com/mar10/jquery-ui-contextmenu" }, "homepage": "https://github.com/mar10/jquery-ui-contextmenu", "demo": "http://wwwendt.de/tech/demo/jquery-contextmenu/demo/", "docs": "https://github.com/mar10/jquery-ui-contextmenu/blob/master/README.md", "bugs": "https://github.com/mar10/jquery-ui-contextmenu/issues", "licenses": [ - { - "type": "MIT", - "url": "https://github.com/mar10/jquery-ui-contextmenu/blob/master/MIT-LICENSE.txt" - } + { + "type": "MIT", + "url": "https://github.com/mar10/jquery-ui-contextmenu/blob/master/MIT-LICENSE.txt" + } ], "dependencies": { - "jquery": ">=1.7" + "jquery": ">=1.7" }, "devDependencies": { - "grunt": "~0.4.1", - "grunt-contrib-concat": "~0.1.3", - "grunt-contrib-connect": "~0.3.0", - "grunt-contrib-jshint": "~0.3.0", - "grunt-contrib-qunit": "~0.2.0", - "grunt-contrib-uglify": "~0.2.0", - "grunt-exec": "~0.4.0", - "grunt-saucelabs": "~4.1.2", - "grunt-contrib-watch": "~0.5.3", - "grunt-yabs": "0.0.2" + "grunt": "~0.4.1", + "grunt-contrib-concat": "~0.1.3", + "grunt-contrib-connect": "~0.3.0", + "grunt-contrib-jshint": "~0.3.0", + "grunt-contrib-qunit": "~0.2.0", + "grunt-contrib-uglify": "~0.2.0", + "grunt-exec": "~0.4.0", + "grunt-saucelabs": "~4.1.2", + "grunt-contrib-watch": "~0.5.3", + "grunt-yabs": "0.0.3" }, "scripts": { - "test": "grunt ci --verbose" + "test": "grunt ci --verbose" } }