Skip to content

Commit 4b95cbe

Browse files
authored
Prepare v3.5.3. (#1809)
1 parent 1d1750f commit 4b95cbe

File tree

7 files changed

+24
-4
lines changed

7 files changed

+24
-4
lines changed

AUTHORS.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ Thanks to
3636
- Kenny Johansson
3737
- Matthias Straka
3838
- Logan Gunthorpe
39+
- Marko Luther
40+
- Matthias Straka
3941
- Pavel Kostromitinov
4042
- peufeu2
4143
- Philip Couling
@@ -45,6 +47,7 @@ Thanks to
4547
- Totally a booplicate
4648
- WouterTuinstra
4749
- wriswith
50+
- yyokusa
4851

4952

5053
Pymodbus version 2 family

CHANGELOG.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ 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.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)
1026

1127

1228
Version 3.5.2

MAKE_RELEASE.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@ 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.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
1919
update AUTHORS
2020
cd doc; ./build_html
2121
* Commit, push and merge.
2222
* Checkout master locally
23+
* git pull dev
2324
* git merge dev
2425
* git push
2526
* git branch -D master

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ There are challenges small and large not only programming but also documentation
3939
Supported versions
4040
------------------
4141

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.
4343

4444
Each release is `documented <https://pymodbus.readthedocs.io/en/latest/source/changelog.html>`_
4545

doc/source/_static/examples.tgz

-41.3 KB
Binary file not shown.

doc/source/_static/examples.zip

0 Bytes
Binary file not shown.

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

0 commit comments

Comments
 (0)