Skip to content

Commit 9ee3a0b

Browse files
author
Rafael J. Staib
committed
Update version to 0.9.0
1 parent cbc92a6 commit 9ee3a0b

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

Gruntfile.js

+3-5
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,9 @@ module.exports = function (grunt)
1515
uglify: {
1616
options: {
1717
preserveComments: false,
18-
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' +
19-
'<%= grunt.template.today("mm/dd/yyyy") %>\\r\\n' +
20-
'<%= pkg.homepage ? "* " + pkg.homepage + "\\r\\n" : "" %>' +
21-
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
22-
' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */'
18+
banner: '/*! <%= "\\r\\n * " + pkg.name %> v<%= pkg.version %> - <%= grunt.template.today("mm/dd/yyyy") + "\\r\\n" %>' +
19+
' * Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %> <%= (pkg.homepage ? "(" + pkg.homepage + ")" : "") + "\\r\\n" %>' +
20+
' * Licensed under <%= pkg.licenses[0].type + " " + pkg.licenses[0].url + "\\r\\n */\\r\\n" %>'
2321
},
2422
all: {
2523
files: {

jquery.steps.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery Steps Plugin v0.8.2 - A powerful jQuery wizard plugin that supports accessibility and HTML5
2+
* jQuery Steps Plugin v0.9.0 - A powerful jQuery wizard plugin that supports accessibility and HTML5
33
* https://github.com/rstaib/jquery-steps
44
*
55
* Copyright (c) 2013 Rafael J. Staib
@@ -15,8 +15,7 @@
1515
* TODOs:
1616
* - Loading Animation (Spinner)
1717
* - Implement slideLeft animation
18-
* - Fix bugs in insert and remove methods (add works fine)
19-
* a. Add tests for add, insert and remove
18+
* - Add tests for add, insert and remove
2019
*
2120
* Planed Features:
2221
* - Progress bar

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jQuery-steps",
33
"title": "jQuery Wizard Plugin",
4-
"version": "0.8.2",
4+
"version": "0.9.0",
55
"description": "A powerful jQuery wizard plugin that supports accessibility and HTML5",
66
"homepage": "https://github.com/rstaib/jquery-steps",
77
"author": {
@@ -23,7 +23,7 @@
2323
],
2424
"licenses": [
2525
{
26-
"license": "MIT",
26+
"type": "MIT",
2727
"url": "http://www.opensource.org/licenses/MIT"
2828
}
2929
],

0 commit comments

Comments
 (0)