Skip to content

Commit 8aa49d5

Browse files
authored
Prepare 3.4.1 (#1705)
1 parent 32ee03a commit 8aa49d5

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

API_changes.rst

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
PyModbus - API changes.
33
=======================
44

5+
-------------
6+
Version 3.4.1
7+
-------------
8+
9+
No changes.
10+
511
-------------
612
Version 3.4.0
713
-------------

CHANGELOG.rst

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
version 3.4.1
2+
----------------------------------------------------------
3+
* Fix serial startup problems. (#1701)
4+
* pass source_address in tcp client. (#1700)
5+
* serial server use source_address[0]. (#1699)
6+
* Examples coverage nearly 100%. (#1694)
7+
* new async serial (#1681)
8+
* Docker is not supported (lack of maintainer). (#1693)
9+
* Forwarder write_coil --> write_coil. (#1691)
10+
* Change default source_address to (0.0.0.0, 502) (#1690)
11+
* Update ruff to 0.0.277 (#1689)
12+
* Fix dict comprehension (#1687)
13+
* Removed `requests` dependency from `contrib/explain.py` (#1688)
14+
* Fix broken test (#1685)
15+
* Fix readme badges (#1682)
16+
* Bump aiohttp from 3.8.3 to 3.8.5 (#1680)
17+
* pygments from 2.14.0 to 2.15.0 (#1677)
18+
19+
Thanks to:
20+
Alex
21+
James Braza
22+
jan iversen
23+
24+
125
version 3.4.0
226
----------------------------------------------------------
327
* Prepare v3.4.0.

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Supported versions
1919

2020
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).
2121

22-
Version `3.4.0 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.4.0>`_ is the current release (Tested with Python >= 3.8).
22+
Version `3.4.1 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.4.1>`_ is the current release (Tested with Python >= 3.8).
2323

2424
.. important::
2525
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

+1-1
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.5.0dev"
15+
__version__ = "3.4.1"
1616
__version_full__ = f"[pymodbus, version {__version__}]"

0 commit comments

Comments
 (0)