Skip to content

Commit

Permalink
set to version 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Chilipp committed May 24, 2019
1 parent 510588b commit 7bc2f4b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v0.2.2
======
Minor patch to use ``inspect.getfullargspec`` instead of ``inspect.getargspec``
because the latter has been deprecated in python 3.0

v0.2.1
======
Small patch to use ``inspect.cleandoc`` instead of ``docrep.dedents``
Expand Down
2 changes: 1 addition & 1 deletion funcargparse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import builtins


__version__ = '0.2.1'
__version__ = '0.2.2'


docstrings = DocstringProcessor()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def readme():


setup(name='funcargparse',
version='0.2.1',
version='0.2.2',
description=(
'Create an argparse.ArgumentParser from function docstrings'),
long_description=readme(),
Expand Down

0 comments on commit 7bc2f4b

Please sign in to comment.