diff --git a/library/CHANGELOG.txt b/library/CHANGELOG.txt index eba8bc4..0b3c185 100644 --- a/library/CHANGELOG.txt +++ b/library/CHANGELOG.txt @@ -1,3 +1,10 @@ +0.0.3 +----- + +* Add support for geoidal separation +* Add support for lat/long direction +* Require Python >= 3.6 + 0.0.2 ----- diff --git a/library/README.md b/library/README.md index a7b249f..c05a349 100644 --- a/library/README.md +++ b/library/README.md @@ -32,6 +32,13 @@ Stable (library only) from PyPi: * Just run `sudo pip3 install pa1010d` # Changelog +0.0.3 +----- + +* Add support for geoidal separation +* Add support for lat/long direction +* Require Python >= 3.6 + 0.0.2 ----- diff --git a/library/pa1010d/__init__.py b/library/pa1010d/__init__.py index ea79917..ed75844 100644 --- a/library/pa1010d/__init__.py +++ b/library/pa1010d/__init__.py @@ -5,7 +5,7 @@ import pynmea2 -__version__ = '0.0.2' +__version__ = '0.0.3' PA1010D_ADDR = 0x10 diff --git a/library/setup.cfg b/library/setup.cfg index fae9804..4305fc6 100644 --- a/library/setup.cfg +++ b/library/setup.cfg @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- [metadata] name = pa1010d -version = 0.0.2 +version = 0.0.3 author = Philip Howard author_email = phil@pimoroni.com description = Python library for the PA1010D i2c GPS module