diff --git a/CHANGELOG.md b/CHANGELOG.md index 9815c76..aa5e848 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.7.1 (2020-07-08) + +Tested with Lua 5.4 + +### New features + + * Hidden aliases can be added to an option or command by setting the + `hidden_name` property + + ## 0.7.0 (2019-08-14) The repository has been moved to a [new location](https://github.com/luarocks/argparse). diff --git a/docsrc/conf.py b/docsrc/conf.py index ae77d83..ee88d61 100644 --- a/docsrc/conf.py +++ b/docsrc/conf.py @@ -51,9 +51,9 @@ copyright = u'2013-2018 Peter Melnichenko; 2019 Paul Ouellette' # built documents. # # The short X.Y version. -version = '0.7.0' +version = '0.7.1' # The full version, including alpha/beta/rc tags. -release = '0.7.0' +release = '0.7.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -116,7 +116,7 @@ if os.environ.get('READTHEDOCS', None) != 'True': # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". -html_title = "argparse 0.7.0 tutorial" +html_title = "argparse " + version + " tutorial" # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None diff --git a/src/argparse.lua b/src/argparse.lua index f440308..6b52962 100644 --- a/src/argparse.lua +++ b/src/argparse.lua @@ -2091,7 +2091,7 @@ end local argparse = {} -argparse.version = "0.7.0" +argparse.version = "0.7.1" setmetatable(argparse, {__call = function(_, ...) return Parser(default_cmdline[0]):add_help(true)(...)