Skip to content

Commit c4bd14b

Browse files
authored
Python Fire Version Bump (google#416)
Bumps version to 0.5.0 in preparation for next release
1 parent c367ce9 commit c4bd14b

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/scripts/build.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@ pip install ipython
3030
python -m pytest # Now run the tests with IPython.
3131
pylint fire --ignore=test_components_py3.py,parser_fuzz_test.py,console
3232
if [[ ${PYTHON_VERSION} == 3.7 ]]; then
33+
# Run type-checking.
3334
pip install pytype;
34-
fi
35-
# Run type-checking.
36-
if [[ ${PYTHON_VERSION} == 3.7 ]]; then
3735
pytype -x fire/test_components_py3.py;
3836
fi

fire/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
from fire.core import Fire
2222

2323
__all__ = ['Fire']
24-
__version__ = '0.4.0'
24+
__version__ = '0.5.0'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
'python-Levenshtein',
4141
]
4242

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

4646
setup(

0 commit comments

Comments
 (0)