From 5ce63cb65c2356f80539ab83fd9e70fcf09d6014 Mon Sep 17 00:00:00 2001 From: jan Iversen Date: Sun, 29 Jan 2023 17:19:59 +0100 Subject: [PATCH] Prepare v3.1.2 --- CHANGELOG.rst | 29 +++++++++++++++++++++++++++++ README.rst | 2 +- pymodbus/version.py | 2 +- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7bbfd714f..78025e65a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,32 @@ +version 3.1.2 +---------------------------------------------------------- +* Update README.rst +* Correct README link. (#1316) +* More direct readme links for REPL (#1314) +* Add classifier for 3.11 (#1312) +* Update README.rst (#1313) +* Delete ModbusCommonBlock.png (#1311) +* Add modbus standard to README. (#1308) +* fix no auto reconnect after close/connect in TCPclient (#1298) +* Update examples.rst (#1307) +* var name clarification (#1304) +* Bump external libraries. (#1302) +* Reorganize documentation to make it easier accessible (#1299) +* Simulator documentation (first version). (#1296) +* Updated datastore Simulator. (#1255) +* Update links to pydmodbus-dev (#1291) +* Change riptideio to pymodbus-dev. (#1292) +* #1258 Avoid showing unit as a seperate command line argument (#1288) +* Solve docker cache problem. (#1287) + +Thanks to: + + Alex, + Alexandre CUER, + dhoomakethu, + jan iversen, + peufeu2 + version 3.1.1 ---------------------------------------------------------- * add missing server.start() (#1282) diff --git a/README.rst b/README.rst index 1785e3326..c087b3c1e 100644 --- a/README.rst +++ b/README.rst @@ -22,7 +22,7 @@ Supported versions Version `2.5.3 `_ is the last 2.x release (Supports python 2.7.x - 3.7). -Version `3.1.1 `_ is the current release (Supports Python >=3.8). +Version `3.1.2 `_ is the current release (Supports Python >=3.8). .. important:: All API changes after 3.0.0 are documented in `API_changes.rst `_ diff --git a/pymodbus/version.py b/pymodbus/version.py index cca60131a..51d1debd5 100644 --- a/pymodbus/version.py +++ b/pymodbus/version.py @@ -37,7 +37,7 @@ def __str__(self): return f"[{self.package}, version {self.short()}]" -version = Version("pymodbus", 3, 1, "x", "") +version = Version("pymodbus", 3, 1, 2, "") version.__name__ = ( # fix epydoc error # pylint: disable=attribute-defined-outside-init "pymodbus" )