File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ Thanks to
4747- embedded-bed
4848- Erlend E. Aasland
4949- Esco441-91
50+ - fafan999
5051- Farzad Panahi
5152- Federico
5253- FedericoMusa
@@ -74,6 +75,7 @@ Thanks to
7475- julian
7576- Julian Lunz
7677- Justin Standring
78+ - Karim Malik
7779- Kenny Johansson
7880- Kevin W Matthews
7981- Kürşat Aktaş
@@ -151,6 +153,7 @@ Thanks to
151153- Thor Michael Støre
152154- Tim Gates
153155- Ville Skyttä
156+ - Vincent Gao
154157- Wild Stray
155158- Yegor Yefremov
156159
Original file line number Diff line number Diff line change @@ -7,6 +7,23 @@ helps make pymodbus a better product.
77
88:ref: `Authors `: contains a complete list of volunteers have contributed to each major version.
99
10+ Version 3.14.0
11+ --------------
12+ * Remove self signed certificate from production. (#2954)
13+ * Correct inequality in validation error message (#2953)
14+ * Fix non-deterministic convert_from_registers (#2951)
15+ * Fix swapped SimDevice in ModbusDeviceContext (#2952)
16+ * Update CI actions and pyproject. (#2938)
17+ * Add ruff format check to ci.yml (#2947)
18+ * Remove 'useless-suppression' pylint (#2949)
19+ * Format test_client.py with ruff (#2948)
20+ * Update clean_workflows CI (node@20 problem). (#2946)
21+ * Ruff format (due to ruff upgrade). (#2945)
22+ * Fix `ModbusServerContext ` initialization with dict `devices ` parameter (#2944)
23+ * Support configured ASCII input delimiter (#2942)
24+ * Fix default no-response behavior for force listen only (#2941)
25+ * Use correct format character for `DataType.REGISTERS ` 'h' -> 'H' (#2940)
26+
1027Version 3.13.1
1128--------------
1229* Update CI Workflows.
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ Prepare/make release on dev.
1414 * Control / Update API_changes.rst
1515 * Update CHANGELOG.rst
1616 * Add commits from last release, but selectively !
17- git log --oneline v3.13.1 ..HEAD > commit.log
18- git log --pretty="%an" v3.13.1 ..HEAD | sort -uf > authors.log
17+ git log --oneline v3.14.0 ..HEAD > commit.log
18+ git log --pretty="%an" v3.14.0 ..HEAD | sort -uf > authors.log
1919 update AUTHORS.rst and CHANGELOG.rst
2020 cd doc; ./build_html
2121 * rm -rf build/* dist/*
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ as well as the
3636`API_changes <https://github.com/pymodbus-dev/pymodbus/blob/dev/API_changes.rst >`_
3737files.
3838
39- Current release is `3.13.1 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.13.1 >`_.
39+ Current release is `3.14.0 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.14.0 >`_.
4040
4141Bleeding edge (not released) is `dev <https://github.com/pymodbus-dev/pymodbus/tree/dev >`_.
4242
Original file line number Diff line number Diff line change 2121from .pdu .device import ModbusDeviceIdentification
2222
2323
24- __version__ = "4.0.0dev11 "
24+ __version__ = "3.14.0 "
2525__version_full__ = f"[pymodbus, version { __version__ } ]"
You can’t perform that action at this time.
0 commit comments