Skip to content

Commit 964a565

Browse files
committed
Release candidate for pymodbus 2.2.0
1 parent 18fe036 commit 964a565

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG.rst

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,21 @@ from pymodbus.client.asynchronous import ModbusTcpClient
88
* Support Python 3.7
99
* Fix `AttributeError` when setting `interCharTimeout` for serial clients.
1010
* Provide an option to disable inter char timeouts with Modbus RTU.
11+
* Add support to register custom requests in clients and server instances.
12+
* Fix read timeout calculation in ModbusTCP.
1113
* Fix SQLDbcontext always returning InvalidAddress error.
1214
* Fix SQLDbcontext update failure
1315
* Fix Binary payload example for endianess.
14-
* Add support to register custom requests in clients and server instances.
16+
* Fix tornado async serial client `TypeError` while processing incoming packet.
17+
* Fix asyncio examples.
18+
* Minor update in factory.py, now server logs prints received request instead of only function code
19+
```
20+
# Now
21+
DEBUG:pymodbus.factory:Factory Request[ReadInputRegistersRequest: 4]
22+
# Before
23+
DEBUG:pymodbus.factory:Factory Request[4]
24+
25+
```
1526

1627

1728
Version 2.1.0

pymodbus/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __str__(self):
4141
return '[%s, version %s]' % (self.package, self.short())
4242

4343

44-
version = Version('pymodbus', 2, 2, 0)
44+
version = Version('pymodbus', 2, 2, 0, "rc1")
4545

4646

4747
version.__name__ = 'pymodbus' # fix epydoc error

0 commit comments

Comments
 (0)