diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e3cf9c6..4f2bef6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,14 @@ Here you can see the full list of changes between each aerofiles release. ------------- +aerofiles v1.1.0 +---------------- + +- IGC/writer: added long_option "RECEIVER" to be compliant with newest spec +- IGC/reader: allow all H-records to be in short or long format +- OpenAir/reader: Added "lineno" to all elements to reference source line + + aerofiles v1.0.0 ---------------- diff --git a/README.rst b/README.rst index 611f1bf..c5f6907 100644 --- a/README.rst +++ b/README.rst @@ -3,8 +3,13 @@ **waypoint, task, tracklog readers and writers for aviation** -.. image:: https://travis-ci.org/Turbo87/aerofiles.png?branch=master - :target: https://travis-ci.org/Turbo87/aerofiles +This is a python library to read and write many important file formats +for aviation. It is compatible with python 3.0 (and newer) and +2.6. Please read the documentation under +https://aerofiles.readthedocs.io for further information. + +.. image:: actions/workflows/ci.yml/badge.svg + :target: actions/workflows/ci.yml :alt: Build Status Features diff --git a/setup.py b/setup.py index 8da09da..d86bd10 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def read(*paths): setup( name='aerofiles', - version='1.0.0', + version='1.1.0', description='waypoint, task, tracklog readers and writers for aviation', long_description=read('README.rst'), url=GITHUB_URL,