Skip to content

Commit d8880c8

Browse files
committed
Merge branch 'dev' into HEAD
2 parents d9e92fc + e040514 commit d8880c8

File tree

3 files changed

+33
-29
lines changed

3 files changed

+33
-29
lines changed

CHANGELOG.rst

Lines changed: 31 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
version 3.0.1
1+
version 3.0.2
22
----------------------------------------------------------
3-
Update datastore remote to handle write requests (#1166)
4-
Allow multiple servers. (#1164)
5-
Fix typo. (#1162)
6-
Transfer parms. to connected client. (#1161)
7-
Repl enhancements 2 (#1141)
8-
Server simulator with datastore with json data. (#1157)
9-
Avoid unwanted reconnects (#1154)
10-
Do not initialize framer twice. (#1153)
11-
Allow timeout as float. (#1152)
12-
Improve Docker Support (#1145)
13-
Fix unreachable code in AsyncModbusTcpClient (#1151)
14-
Fix type hints for port and timeout (#1147)
15-
Start/stop multiple servers. (#1138)
16-
Server/asyncio.py correct logging when disconnecting the socket (#1135)
17-
Add Docker and container registry support (#1132)
18-
Removes undue reported error when forwarding (#1134)
19-
Obey timeout parameter on connection (#1131)
20-
Readme typos (#1129)
21-
Clean noqa directive. (#1125)
22-
Add isort and activate CI fail for black/isort. (#1124)
23-
Update examples. (#1117)
24-
Move logging configuration behind function call (#1120)
25-
serial2TCP forwarding example (#1116)
26-
Make serial import dynamic. (#1114)
27-
Bugfix ModbusSerialServer setup so handler is called correctly. (#1113)
28-
Clean configurations. (#1111)
3+
* Update datastore remote to handle write requests (#1166)
4+
* Allow multiple servers. (#1164)
5+
* Fix typo. (#1162)
6+
* Transfer parms. to connected client. (#1161)
7+
* Repl enhancements 2 (#1141)
8+
* Server simulator with datastore with json data. (#1157)
9+
* Avoid unwanted reconnects (#1154)
10+
* Do not initialize framer twice. (#1153)
11+
* Allow timeout as float. (#1152)
12+
* Improve Docker Support (#1145)
13+
* Fix unreachable code in AsyncModbusTcpClient (#1151)
14+
* Fix type hints for port and timeout (#1147)
15+
* Start/stop multiple servers. (#1138)
16+
* Server/asyncio.py correct logging when disconnecting the socket (#1135)
17+
* Add Docker and container registry support (#1132)
18+
* Removes undue reported error when forwarding (#1134)
19+
* Obey timeout parameter on connection (#1131)
20+
* Readme typos (#1129)
21+
* Clean noqa directive. (#1125)
22+
* Add isort and activate CI fail for black/isort. (#1124)
23+
* Update examples. (#1117)
24+
* Move logging configuration behind function call (#1120)
25+
* serial2TCP forwarding example (#1116)
26+
* Make serial import dynamic. (#1114)
27+
* Bugfix ModbusSerialServer setup so handler is called correctly. (#1113)
28+
* Clean configurations. (#1111)
2929

3030
Thanks to:
3131

@@ -40,6 +40,10 @@ Thanks to:
4040
Thijs W
4141
WouterTuinstra
4242

43+
version 3.0.1
44+
----------------------------------------------------------
45+
* Faulty release!
46+
4347
version 3.0.0
4448
----------------------------------------------------------
4549
* Solve multiple incomming frames. (#1107)

README.rst

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

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

22-
Version `3.0.1 <https://github.com/riptideio/pymodbus/releases/tag/v3.0.1>`_ is the current release (Supports Python >=3.8).
22+
Version `3.0.2 <https://github.com/riptideio/pymodbus/releases/tag/v3.0.2>`_ is the current release (Supports Python >=3.8).
2323

2424
Remark: "Supports" means that we only test with those versions, lower versions (e.g. 3.7) might work depending on the functionality used.
2525

pymodbus/version.py

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

3939

40-
version = Version("pymodbus", 3, 0, 1, "")
40+
version = Version("pymodbus", 3, 0, 2, "")
4141
version.__name__ = ( # fix epydoc error # pylint: disable=attribute-defined-outside-init
4242
"pymodbus"
4343
)

0 commit comments

Comments
 (0)