diff --git a/CHANGES.txt b/CHANGES.txt index 900e453..48d394a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,5 @@ +v0.7.1, 2016-08-14 -- Fix for tracks with only 1 trackpoint. + v0.7.0, 2016-01-01 -- Added average altitude support. Thanks @firefly-cpp v0.6.0, 2014-11-18 -- Added heart rate data & pace support. Thanks @stevedoyle diff --git a/README.md b/README.md index 02f4e48..206b6a6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # python-tcxparser -[ ![Codeship Status for vkurup/python-tcxparser](https://codeship.com/projects/73da6380-712d-0132-3214-62f5102d8589/status?branch=master)](https://codeship.com/projects/54578) +[ ![Codeship Status for vkurup/python-tcxparser](https://codeship.com/projects/eb924480-4493-0134-5e03-3a611b6d72e6/status?branch=master)](https://codeship.com/projects/168475) python-tcxparser is a minimal parser for Garmin's TCX file format. It is not in any way exhaustive. It extracts just enough data to allow me diff --git a/setup.py b/setup.py index e733516..14c256f 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup -__version__ = '0.7.0' +__version__ = '0.7.1' setup( name='python-tcxparser',