From f38207462b7382365801b0a722480df7a3e182b6 Mon Sep 17 00:00:00 2001 From: Auke Willem Oosterhoff Date: Fri, 5 Jan 2018 13:17:29 +0100 Subject: [PATCH] Bump to 1.0.0 --- docs/source/changelog.rst | 9 +++++++++ docs/source/conf.py | 4 ++-- setup.py | 11 +++++++---- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index af57553..8c62396 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,15 @@ Changelog ========= +1.0.0 (2018-01-06) +++++++++++++++++++ + +**Bugs** + +* `#50` Fix handling of empty ADU's. + +.. _#50: https://github.com/AdvancedClimateSystems/uModbus/issues/50 + 0.8.2 (2016-11-11) ++++++++++++++++++ diff --git a/docs/source/conf.py b/docs/source/conf.py index fad67ee..d61b2cb 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -59,9 +59,9 @@ # built documents. # # The short X.Y version. -version = '0.8' +version = '1.0' # The full version, including alpha/beta/rc tags. -release = '0.8.2' +release = '1.0.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 3bb53db..854b928 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ long_description = open(os.path.join(cwd, 'README.rst'), 'r').read() setup(name='uModbus', - version='0.8.2', + version='1.0.0', author='Auke Willem Oosterhoff', author_email='a.oosterhoff@climotion.com', description='Implementation of the Modbus protocol in pure Python.', @@ -30,11 +30,14 @@ 'pyserial~=3.4', ], classifiers=[ - 'Development Status :: 5 - Production/Stable', + 'Development Status :: 6 - Mature', 'Intended Audience :: Developers', 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Topic :: Software Development :: Embedded Systems', ])