Skip to content

Commit 79d2e05

Browse files
committed
Update version, grunt-gabs and change log
1 parent 0098416 commit 79d2e05

File tree

5 files changed

+30
-5
lines changed

5 files changed

+30
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# 1.4.1 / Unreleased
1+
# 1.5.1 / Unreleased
2+
3+
# 1.5.0 / 2014-07-06
4+
* [CHANGE] Use data-command="copy" instead of `<a href='...'>` to store command ids.
5+
* [FEATURE] Support jQuery UI 1.11.
26

37
# 1.4.0 / 2014-06-22
48
* [FEATURE] Support bower.

Gruntfile.coffee

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,28 @@ module.exports = (grunt) ->
4242
qunit:
4343
all: ["test/index.html", "test/index-jquery-ui-1-11.html"]
4444

45+
# replace: # grunt-text-replace
46+
# production:
47+
# src: ["build/**/*.js"]
48+
# overwrite : true
49+
# replacements: [ {
50+
# from : /@DATE/g
51+
# to : "<%= grunt.template.today('yyyy-mm-dd\"T\"HH:MM') %>"
52+
# },{
53+
# from : /buildType:\s*\"[a-zA-Z]+\"/g
54+
# to : "buildType: \"production\""
55+
# },{
56+
# from : /debugLevel:\s*[0-9]/g
57+
# to : "debugLevel: 1"
58+
# } ]
59+
# release:
60+
# src: ["dist/**/*.js"]
61+
# overwrite : true
62+
# replacements: [ {
63+
# from : /@VERSION/g
64+
# to : "<%= pkg.version %>"
65+
# } ]
66+
4567
"saucelabs-qunit":
4668
all:
4769
options:

demo/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
55
<title>jquery.ui-contextmenu.js - Demo</title>
66
<!-- min requirements:
7-
<link type="text/css" rel="stylesheet" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css" />
87
<script src="http://code.jquery.com/jquery-1.7.js" type="text/javascript"></script>
98
<script src="http://code.jquery.com/ui/1.9.0/jquery-ui.js" type="text/javascript"></script>
109
-->

jquery.ui-contextmenu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
match, uiVersion;
1414

1515
$.widget("moogle.contextmenu", {
16-
version: "1.4.0-1",
16+
version: "@VERSION",
1717
options: {
1818
autoTrigger: true, // open menu on browser's `contextmenu` event
1919
delegate: null, // selector

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
"grunt-exec": "~0.4.0",
4747
"grunt-saucelabs": "~8.1.0",
4848
"grunt-contrib-watch": "~0.5.3",
49-
"grunt-yabs": "0.0.7"
49+
"grunt-yabs": "^0.1.0"
5050
},
5151
"scripts": {
5252
"test": "grunt ci --verbose"
5353
}
54-
}
54+
}

0 commit comments

Comments
 (0)