Skip to content

Commit

Permalink
bump version to v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jfd committed Nov 2, 2011
1 parent f48184b commit c913097
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/optparse.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Optparse.js 1.0.2 - Option Parser for Javascript
// Optparse.js 1.0.3 - Option Parser for Javascript
//
// Copyright (c) 2009 Johan Dahlberg
//
Expand All @@ -7,7 +7,7 @@
var optparse = {};
try{ optparse = exports } catch(e) {}; // Try to export the lib for node.js
(function(self) {
var VERSION = '1.0.2';
var VERSION = '1.0.3';
var LONG_SWITCH_RE = /^--\w/;
var SHORT_SWITCH_RE = /^-\w/;
var NUMBER_RE = /^(0x[A-Fa-f0-9]+)|([0-9]+\.[0-9]+)|(\d+)$/;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"author": "Johan Dahlberg",
"description": "Command-line option parser",
"keywords": ["option", "parser", "command-line", "cli", "terminal"],
"version": "1.0.1",
"version": "1.0.3",
"main": "./lib/optparse"
}

3 comments on commit c913097

@thisconnect
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Johan, could you git tag this version?

@jfd
Copy link
Owner Author

@jfd jfd commented on c913097 Jan 8, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

@thisconnect
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!! =)

Please sign in to comment.