Skip to content

Commit 5ce63cb

Browse files
committed
Prepare v3.1.2
1 parent 255fb61 commit 5ce63cb

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

CHANGELOG.rst

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
version 3.1.2
2+
----------------------------------------------------------
3+
* Update README.rst
4+
* Correct README link. (#1316)
5+
* More direct readme links for REPL (#1314)
6+
* Add classifier for 3.11 (#1312)
7+
* Update README.rst (#1313)
8+
* Delete ModbusCommonBlock.png (#1311)
9+
* Add modbus standard to README. (#1308)
10+
* fix no auto reconnect after close/connect in TCPclient (#1298)
11+
* Update examples.rst (#1307)
12+
* var name clarification (#1304)
13+
* Bump external libraries. (#1302)
14+
* Reorganize documentation to make it easier accessible (#1299)
15+
* Simulator documentation (first version). (#1296)
16+
* Updated datastore Simulator. (#1255)
17+
* Update links to pydmodbus-dev (#1291)
18+
* Change riptideio to pymodbus-dev. (#1292)
19+
* #1258 Avoid showing unit as a seperate command line argument (#1288)
20+
* Solve docker cache problem. (#1287)
21+
22+
Thanks to:
23+
24+
Alex,
25+
Alexandre CUER,
26+
dhoomakethu,
27+
jan iversen,
28+
peufeu2
29+
130
version 3.1.1
231
----------------------------------------------------------
332
* add missing server.start() (#1282)

README.rst

+1-1
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.1.1 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.1.1>`_ is the current release (Supports Python >=3.8).
25+
Version `3.1.2 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.1.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/version.py

+1-1
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, 1, "x", "")
40+
version = Version("pymodbus", 3, 1, 2, "")
4141
version.__name__ = ( # fix epydoc error # pylint: disable=attribute-defined-outside-init
4242
"pymodbus"
4343
)

0 commit comments

Comments
 (0)