Skip to content

Commit

Permalink
Python Fire Version Bump (#416)
Browse files Browse the repository at this point in the history
Bumps version to 0.5.0 in preparation for next release
  • Loading branch information
dbieber authored Nov 28, 2022
1 parent c367ce9 commit c4bd14b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ pip install ipython
python -m pytest # Now run the tests with IPython.
pylint fire --ignore=test_components_py3.py,parser_fuzz_test.py,console
if [[ ${PYTHON_VERSION} == 3.7 ]]; then
# Run type-checking.
pip install pytype;
fi
# Run type-checking.
if [[ ${PYTHON_VERSION} == 3.7 ]]; then
pytype -x fire/test_components_py3.py;
fi
2 changes: 1 addition & 1 deletion fire/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
from fire.core import Fire

__all__ = ['Fire']
__version__ = '0.4.0'
__version__ = '0.5.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
'python-Levenshtein',
]

VERSION = '0.4.0'
VERSION = '0.5.0'
URL = 'https://github.com/google/python-fire'

setup(
Expand Down

0 comments on commit c4bd14b

Please sign in to comment.