Skip to content

Commit

Permalink
bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Batdorf committed May 20, 2014
1 parent c929fd9 commit fcdfb1e
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 8 deletions.
20 changes: 18 additions & 2 deletions Gruntfile.js
@@ -1,6 +1,7 @@
module.exports = function (grunt) {

grunt.initConfig({
version: '2.3.3',
jshint: {
options: {
browser: true,
Expand All @@ -19,7 +20,7 @@ module.exports = function (grunt) {
mangle: true,
compress: true,
sourceMap: false,
banner: "/*\n * Liquid Slider v2.3.2\n * Copyright 2012 Kevin Batdorf\n * http://liquidslider.com\n * MIT license\n */"
banner: "/*\n * Liquid Slider <%= version %>\n * Copyright 2012 Kevin Batdorf\n * http://liquidslider.com\n * MIT license\n */"
},
main: {
src: "src/js/jquery.liquid-slider.js",
Expand All @@ -40,13 +41,28 @@ module.exports = function (grunt) {
options: {
livereload: true
}
},
config: {
files: ['Gruntfile.js'],
tasks: ["jshint", "uglify"]
}
}
},
bump: {
options: {
files: ['./*.json', 'Gruntfile.js'],
updateConfigs: ['version'],
tagName: "%VERSION%",
commit: false,
push:false,
createTag:false
}
},
});

grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-bump');

grunt.registerTask('default', ['jshint', 'uglify', 'watch']);

Expand Down
2 changes: 1 addition & 1 deletion README.markdown
Expand Up @@ -12,7 +12,7 @@ How to Use
-----------
The easy way is to use [bower](http://bower.io/):

`bower install LiquidSlider`
`bower install jquery-liquidslider`

The manual way:

Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "liquidslider",
"version": "2.3.2",
"version": "2.3.3",
"homepage": "http://liquidslider.com",
"authors": [
"Kevin Batdorf <kevin@kevinbatdorf.com>"
Expand Down
2 changes: 1 addition & 1 deletion js/jquery.liquid-slider.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion liquidslider.jquery.json
Expand Up @@ -11,7 +11,7 @@
"mobile",
"tabs"
],
"version": "2.3.2",
"version": "2.3.3",
"author": {
"name": "Kevin Batdorf",
"url": "http://www.kevinbatdorf.com"
Expand Down
5 changes: 3 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "liquidslider",
"version": "2.3.2",
"version": "2.3.3",
"description": "A Responsive Content Slider",
"main": "index.js",
"directories": {
Expand Down Expand Up @@ -33,6 +33,7 @@
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-jasmine": "~0.6.3"
"grunt-contrib-jasmine": "~0.6.3",
"grunt-bump": "0.0.14"
}
}

0 comments on commit fcdfb1e

Please sign in to comment.