Skip to content

Commit 844913d

Browse files
committed
Merge branch 'v3.2.2_pick'
2 parents 83b7331 + dd2cf44 commit 844913d

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
version 3.2.2 (picked from dev, only bugfixes)
2+
----------------------------------------------------------
3+
* Add forgotten await
4+
15
version 3.2.1 (picked from dev, only bugfixes)
26
----------------------------------------------------------
37
* add missing server.start(). (#1443)

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Supported versions
2222

2323
Version `2.5.3 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v2.5.3>`_ is the last 2.x release (Supports python 2.7.x - 3.7).
2424

25-
Version `3.2.0 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.2.0>`_ is the current release (Supports Python >=3.8).
25+
Version `3.2.2 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.2.2>`_ is the current release (Supports Python >=3.8).
2626

2727
.. important::
2828
All API changes after 3.0.0 are documented in `API_changes.rst <https://github.com/pymodbus-dev/pymodbus/blob/dev/API_changes.rst>`_

pymodbus/server/async_io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1221,7 +1221,7 @@ async def StartAsyncSerialServer( # pylint: disable=invalid-name,dangerous-defa
12211221
server = ModbusSerialServer(
12221222
context, kwargs.pop("framer", ModbusAsciiFramer), identity=identity, **kwargs
12231223
)
1224-
server.start()
1224+
await server.start()
12251225
await _serverList.run(server, custom_functions)
12261226

12271227

pymodbus/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ def __str__(self) -> str:
3737
return f"[{self.package}, version {self.short()}]"
3838

3939

40-
version = Version("pymodbus", 3, 2, 1, "")
40+
version = Version("pymodbus", 3, 2, 2, "")

0 commit comments

Comments
 (0)