Skip to content

Commit 5dc0dc5

Browse files
authored
Prepare v3.4.0. (#1676)
1 parent 4662456 commit 5dc0dc5

File tree

3 files changed

+57
-2
lines changed

3 files changed

+57
-2
lines changed

CHANGELOG.rst

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
version 3.4.0
2+
----------------------------------------------------------
3+
* Prepare v3.4.0.
4+
* Handle partial local echo. (#1675)
5+
* clarify handle_local_echo. (#1674)
6+
* async_client: add retries/reconnect. (#1672)
7+
* Fix 3.11 problem. (#1673)
8+
* Add new example simulator server/client. (#1671)
9+
* `examples/contrib/explain.py` leveraging Rapid SCADA (#1665)
10+
* _logger missed basicConfig. (#1670)
11+
* Bug fix for #1662 (#1663)
12+
* Bug fix for #1661 (#1664)
13+
* Fix typo in config.rst (#1660)
14+
* test action_increment. (#1659)
15+
* test codeql (#1655)
16+
* mypy complaints. (#1656)
17+
* Remove self.params from async client (#1640)
18+
* Drop test of pypy with python 3.8.
19+
* repair server_async.py (#1644)
20+
* move common framer to base. (#1639)
21+
* Restrict Return diag call to bytes. (#1638)
22+
* use slave= in diag requests. (#1636)
23+
* transport listen in server. (#1628)
24+
* CI test.
25+
* Integrate transport in server. (#1617)
26+
* fix getFrameStart for ExceptionResponse (#1627)
27+
* Add min/min to simulator actions.
28+
* Change to "sync client" in forwarder example (#1625)
29+
* Remove docker (lack of maintenance). (#1623)
30+
* Clean defaults (#1618)
31+
* Reduce CI log with no debug. (#1616)
32+
* prepare server to use transport. (#1607)
33+
* Fix RemoteSlaveContext (#1599)
34+
* Combine stale and lock. (#1608)
35+
* update pytest + extensions. (#1610)
36+
* Change version follow PEP 440. (#1609)
37+
* Fix regression with REPL server not listening (#1604)
38+
* Remove handler= for server classes. (#1602)
39+
* Fix write function codes (#1598)
40+
* transport nullmodem (#1591)
41+
* move test of examples to subdirectory. (#1592)
42+
* transport as object, not base class. (#1572)
43+
* Simple examples. (#1590)
44+
* transport_connect as bool. (#1587)
45+
* Prepare dev (#1588)
46+
* Release corrections. (#1586)
47+
48+
Thanks to:
49+
Alex
50+
Fredo70
51+
Hangyu Fan
52+
James Braza
53+
jan iversen
54+
55+
156
version 3.3.2
257
----------------------------------------------------------
358
* Fix RemoteSlaveContext (#1599)

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 (python >= 2.7, no longer supported).
2424

25-
Version `3.3.2 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.3.2>`_ is the current release (Tested with Python >= 3.8).
25+
Version `3.4.0 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.4.0>`_ is the current release (Tested with 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/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
from pymodbus.logging import pymodbus_apply_logging_config
1313

1414

15-
__version__ = "3.4.0dev"
15+
__version__ = "3.4.0"
1616
__version_full__ = f"[pymodbus, version {__version__}]"

0 commit comments

Comments
 (0)