Skip to content

Commit

Permalink
Updated version for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanwills committed Jun 28, 2015
1 parent 1f83488 commit 10cc859
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ gulp.task('sonar', function () {
},
projectKey: 'sonar:node-getopt-long',
projectName: 'node-getopt-long',
projectVersion: '0.2.4',
projectVersion: '0.2.5',
// comma-delimited string of source directories
sources: 'lib',
language: 'js',
Expand Down
2 changes: 1 addition & 1 deletion lib/getopt-long-param.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var getoptLongParam = function (details) {
this.paramName = details[1].paramName;
}
};
getoptLongParam.prototype.VERSION = '0.2.4';
getoptLongParam.prototype.VERSION = '0.2.5';
getoptLongParam.prototype.name = '';
getoptLongParam.prototype.value = null;
getoptLongParam.prototype.paramName = null;
Expand Down
2 changes: 1 addition & 1 deletion lib/getopt-long.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var getoptLong = function (params, config) {
};

// record the version with the object
getoptLong.prototype.VERSION = '0.2.4';
getoptLong.prototype.VERSION = '0.2.5';
// ignore case of options as entered
getoptLong.prototype.ignoreCase = true;
// allow bundling of short arguments eg -v -e can be written as -ve
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author" : "Ivan Wills <ivan.wills@gmail.com>",
"name" : "node-getopt-long",
"description": "Sophisticated command line argument parser",
"version" : "0.2.4",
"version" : "0.2.5",
"license" : "GPL-3.0+",
"keywords" : ["commandline", "argument", "passing"],
"node" : ">=0.10",
Expand Down

0 comments on commit 10cc859

Please sign in to comment.