diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..6258ce0 --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,22 @@ +========= +Changelog +========= + +This document lists all important changes to timeflux_amti. + +Version numbers follow `semantic versioning `_. + +0.2.0 (2019-05-23) +------------------ + +* Fixed platform zero management with an event. +* Added system diagnostic and logging. +* Removed setup checks to fail on 2xx codes. +* Add DLL configuration save when tearing down the node. + +0.1.0 (2019-04-19) +------------------ + +* Initial release. +* Timeflux node for AMTI force platform acquisition using the DLL provided + by AMTI. diff --git a/setup.py b/setup.py index 04b544c..6e7270b 100644 --- a/setup.py +++ b/setup.py @@ -15,8 +15,8 @@ test_requirements = ['pytest', ] setup( - author='', - author_email='', + author='David Ojeda', + author_email='david.ojeda@gmail.com', classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Developers', @@ -35,6 +35,6 @@ test_suite='test', tests_require=test_requirements, url='https://github.com/timeflux/timeflux_amti', - version='0.1.0', + version='0.2.0', zip_safe=False, )