Skip to content

Commit 507e8a0

Browse files
author
sanjay
committed
Bump version to 2.2.0rc1, update six requirements and Changelog
1 parent cc6e976 commit 507e8a0

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Version 2.3.0rc1
2+
-----------------------------------------------------------
3+
* Asyncio Server implementation (Python 3.7 and above only)
4+
* Bug fix for DiagnosticStatusResponse when odd sized response is received
5+
* Remove Pycrypto from dependencies and include cryptodome instead
6+
* Remove `SIX` requirement pinned to exact version.
7+
* Minor bug-fixes in documentations.
8+
9+
110
Version 2.2.0
211
-----------------------------------------------------------
312
**NOTE: Supports python 3.7, async client is now moved to pymodbus/client/asychronous**

pymodbus/client/sync.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,6 @@ def __init__(self, method='ascii', **kwargs):
424424
:param strict: Use Inter char timeout for baudrates <= 19200 (adhere
425425
to modbus standards)
426426
"""
427-
import serial
428427
self.method = method
429428
self.socket = None
430429
BaseModbusClient.__init__(self, self.__implementation(method, self),

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, 3, 0, "rc1")
4545

4646

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

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
six==1.11.0
1+
six>=1.11.0
22
# -------------------------------------------------------------------
33
# if want to use the pymodbus serial stack, uncomment these
44
# -------------------------------------------------------------------

0 commit comments

Comments
 (0)