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 Mar 29, 2015
1 parent 9ceb030 commit 9b86dab
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ gulp.task('sonar', function () {
username: 'sonar',
password: 'sonar'
},
projectKey: 'sonar:node-getopt-long:0.1.2',
projectKey: 'sonar:node-getopt-long:0.2.0',
projectName: 'node-getopt-long',
projectVersion: '0.1.2',
projectVersion: '0.2.0',
// 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 @@ -28,7 +28,7 @@ var getoptLongParam = function (details) {
this.paramName = details[1].paramName;
}
};
getoptLongParam.prototype.version = '0.1.2';
getoptLongParam.prototype.version = '0.2.0';
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() {
};

// record the version with the object
getoptLong.prototype.version = '0.1.2';
getoptLong.prototype.version = '0.2.0';
// 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.1.2",
"version" : "0.2.0",
"license" : "GPL-3.0+",
"keywords" : ["commandline", "argument", "passing"],
"bin" : {},
Expand Down

0 comments on commit 9b86dab

Please sign in to comment.