Skip to content

Commit 4fd98ba

Browse files
committed
Bump to 1.0.4
1 parent b928ff4 commit 4fd98ba

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

docs/source/changelog.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,30 @@
11
Changelog
22
=========
33

4+
1.0.4 (2020-08-27)
5+
++++++++++++++++++
6+
7+
**Bugs**
8+
9+
* `#90`_ Fix error code of 2 Modbus errors. Thanks `@rgov`!
10+
* `#100`_ Improve check for missing routes. Thanks `@rgov`!
11+
* `#101`_ Fix crash if 1 of arguments of `umodbus.server.route` is `None` .Thanks `@rgov`!
12+
* `#105`_ Fix byte count when for WriteMultipleCoils. Thank `@acolomb`!
13+
14+
**Improvements**
15+
16+
* `#102`_ Remove redundant exception traceback. Thanks `@rgov`!
17+
* `#103`_ Fix error code of 2 Modbus errors. Thanks `@rgov`!
18+
* `#104`_ Denote hex dump of ADU in debug log. Thanks `@rgov`!
19+
20+
.. _#90: https://github.com/AdvancedClimateSystems/uModbus/issues/90
21+
.. _#100: https://github.com/AdvancedClimateSystems/uModbus/issues/100
22+
.. _#101: https://github.com/AdvancedClimateSystems/uModbus/issues/101
23+
.. _#102: https://github.com/AdvancedClimateSystems/uModbus/issues/102
24+
.. _#103: https://github.com/AdvancedClimateSystems/uModbus/issues/103
25+
.. _#104: https://github.com/AdvancedClimateSystems/uModbus/issues/103
26+
.. _#105: https://github.com/AdvancedClimateSystems/uModbus/issues/105
27+
428
1.0.3 (2019-12-04)
529
++++++++++++++++++
630

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = '1.0'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '1.0.3'
64+
release = '1.0.4'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
long_description = open(os.path.join(cwd, 'README.rst'), 'r').read()
1313

1414
setup(name='uModbus',
15-
version='1.0.3',
15+
version='1.0.4',
1616
author='Auke Willem Oosterhoff',
1717
author_email='[email protected]',
1818
description='Implementation of the Modbus protocol in pure Python.',

0 commit comments

Comments
 (0)