Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Knio committed Feb 2, 2019
1 parent a5039e6 commit bf5b389
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
15 changes: 9 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

test:
py.test

publish:
python setup.py sdist upload
test:
python2 -m pytest .
python3 -m pytest .

publish: test
rm dist/ -r
python3 setup.py sdist
python3 setup.py bdist_wheel
python3 -m twine upload dist/*
2 changes: 1 addition & 1 deletion pynmea2/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.12.0'
__version__ = '1.14.0'
2 changes: 1 addition & 1 deletion test/test_pynmea.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


def test_version():
version = '1.12.0'
version = '1.14.0'
assert pynmea2.version == version
assert pynmea2.__version__ == version

Expand Down

0 comments on commit bf5b389

Please sign in to comment.