File tree Expand file tree Collapse file tree 7 files changed +24
-4
lines changed Expand file tree Collapse file tree 7 files changed +24
-4
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ Thanks to
36
36
- Kenny Johansson
37
37
- Matthias Straka
38
38
- Logan Gunthorpe
39
+ - Marko Luther
40
+ - Matthias Straka
39
41
- Pavel Kostromitinov
40
42
- peufeu2
41
43
- Philip Couling
@@ -45,6 +47,7 @@ Thanks to
45
47
- Totally a booplicate
46
48
- WouterTuinstra
47
49
- wriswith
50
+ - yyokusa
48
51
49
52
50
53
Pymodbus version 2 family
Original file line number Diff line number Diff line change @@ -7,6 +7,22 @@ helps make pymodbus a better product.
7
7
8
8
:ref: `Authors `: contains a complete list of volunteers have contributed to each major version.
9
9
10
+ Version 3.5.3
11
+ -------------
12
+ * Simplify transport_serial (modbus use) (#1808)
13
+ * Reduce transport_serial (#1807)
14
+ * Change to pyproject.toml. (#1805)
15
+ * fixes access to asyncio loop via loop property of SerialTransport (#1804)
16
+ * Bump aiohttp to support python 3.12. (#1802)
17
+ * README wrong links. (#1801)
18
+ * CI caching. (#1796)
19
+ * Solve pylint unhappy. (#1799)
20
+ * Clean except last 7 days. (#1798)
21
+ * Reconect_delay == 0, do not reconnect. (#1795)
22
+ * Update simulator.py method docstring (#1793)
23
+ * add type to isError. (#1781)
24
+ * Allow repr(ModbusException) to return complete information (#1779)
25
+ * Update docs. (#1777)
10
26
11
27
12
28
Version 3.5.2
Original file line number Diff line number Diff line change @@ -14,12 +14,13 @@ Prepare/make release on dev.
14
14
* Control / Update API_changes.rst
15
15
* Update CHANGELOG.rst
16
16
* Add commits from last release, but selectively !
17
- git log --oneline v3.5.1 ..HEAD > commit.log
18
- git log --pretty="%an" v3.0.0..HEAD | sort -uf >> AUTHORS
17
+ git log --oneline v3.5.3 ..HEAD > commit.log
18
+ git log --pretty="%an" v3.0.0..HEAD | sort -uf > authors.log
19
19
update AUTHORS
20
20
cd doc; ./build_html
21
21
* Commit, push and merge.
22
22
* Checkout master locally
23
+ * git pull dev
23
24
* git merge dev
24
25
* git push
25
26
* git branch -D master
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ There are challenges small and large not only programming but also documentation
39
39
Supported versions
40
40
------------------
41
41
42
- Version `3.5.2 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.5.2 >`_ is the current release.
42
+ Version `3.5.3 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.5.3 >`_ is the current release.
43
43
44
44
Each release is `documented <https://pymodbus.readthedocs.io/en/latest/source/changelog.html >`_
45
45
Original file line number Diff line number Diff line change 12
12
from pymodbus .logging import pymodbus_apply_logging_config
13
13
14
14
15
- __version__ = "3.6.0dev "
15
+ __version__ = "3.5.3 "
16
16
__version_full__ = f"[pymodbus, version { __version__ } ]"
You can’t perform that action at this time.
0 commit comments