diff --git a/AUTHORS b/AUTHORS index a7d9616..fc4b10e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -28,6 +28,7 @@ and generally made *Argh* better: :Joseph McCullough: Patch for dev environ :Jason Dusek: Patch for EntryPoint :Felix Yan: Fix missing test dependencies +:David Warde-Farley: Bugfix ...you? :-) Patches, ideas and any feedback is highly appreciated. diff --git a/CHANGES b/CHANGES index 39a116d..7b868b7 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,15 @@ Changelog ~~~~~~~~~ +Version 0.26.3-dev +------------------ + +Fixed bugs: + +- When command function signature contained ``**kwargs`` *and* positionals + without defaults and with underscores in their names, a weird behaviour could + be observed (issue #104). + Version 0.26.2 -------------- diff --git a/argh/__init__.py b/argh/__init__.py index 481f1b4..73c3a31 100644 --- a/argh/__init__.py +++ b/argh/__init__.py @@ -16,4 +16,4 @@ from .helpers import * -__version__ = '0.26.2' +__version__ = '0.26.3-dev'