From 4fd98bab9fe320260b9bc0b0eb5357f043aa6ec3 Mon Sep 17 00:00:00 2001 From: Auke Willem Oosterhoff Date: Thu, 27 Aug 2020 22:19:05 +0200 Subject: [PATCH] Bump to 1.0.4 --- docs/source/changelog.rst | 24 ++++++++++++++++++++++++ docs/source/conf.py | 2 +- setup.py | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 22b036f..29e97bf 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,30 @@ Changelog ========= +1.0.4 (2020-08-27) +++++++++++++++++++ + +**Bugs** + +* `#90`_ Fix error code of 2 Modbus errors. Thanks `@rgov`! +* `#100`_ Improve check for missing routes. Thanks `@rgov`! +* `#101`_ Fix crash if 1 of arguments of `umodbus.server.route` is `None` .Thanks `@rgov`! +* `#105`_ Fix byte count when for WriteMultipleCoils. Thank `@acolomb`! + +**Improvements** + +* `#102`_ Remove redundant exception traceback. Thanks `@rgov`! +* `#103`_ Fix error code of 2 Modbus errors. Thanks `@rgov`! +* `#104`_ Denote hex dump of ADU in debug log. Thanks `@rgov`! + +.. _#90: https://github.com/AdvancedClimateSystems/uModbus/issues/90 +.. _#100: https://github.com/AdvancedClimateSystems/uModbus/issues/100 +.. _#101: https://github.com/AdvancedClimateSystems/uModbus/issues/101 +.. _#102: https://github.com/AdvancedClimateSystems/uModbus/issues/102 +.. _#103: https://github.com/AdvancedClimateSystems/uModbus/issues/103 +.. _#104: https://github.com/AdvancedClimateSystems/uModbus/issues/103 +.. _#105: https://github.com/AdvancedClimateSystems/uModbus/issues/105 + 1.0.3 (2019-12-04) ++++++++++++++++++ diff --git a/docs/source/conf.py b/docs/source/conf.py index cabdca5..097733c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -61,7 +61,7 @@ # The short X.Y version. version = '1.0' # The full version, including alpha/beta/rc tags. -release = '1.0.3' +release = '1.0.4' # 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 5e83d3a..1c36cb5 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='1.0.3', + version='1.0.4', author='Auke Willem Oosterhoff', author_email='a.oosterhoff@climotion.com', description='Implementation of the Modbus protocol in pure Python.',