Skip to content

Commit

Permalink
Prepare v3.5.3. (#1809)
Browse files Browse the repository at this point in the history
  • Loading branch information
janiversen authored Oct 11, 2023
1 parent 1d1750f commit 4b95cbe
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 4 deletions.
3 changes: 3 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ Thanks to
- Kenny Johansson
- Matthias Straka
- Logan Gunthorpe
- Marko Luther
- Matthias Straka
- Pavel Kostromitinov
- peufeu2
- Philip Couling
Expand All @@ -45,6 +47,7 @@ Thanks to
- Totally a booplicate
- WouterTuinstra
- wriswith
- yyokusa


Pymodbus version 2 family
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ helps make pymodbus a better product.

:ref:`Authors`: contains a complete list of volunteers have contributed to each major version.

Version 3.5.3
-------------
* Simplify transport_serial (modbus use) (#1808)
* Reduce transport_serial (#1807)
* Change to pyproject.toml. (#1805)
* fixes access to asyncio loop via loop property of SerialTransport (#1804)
* Bump aiohttp to support python 3.12. (#1802)
* README wrong links. (#1801)
* CI caching. (#1796)
* Solve pylint unhappy. (#1799)
* Clean except last 7 days. (#1798)
* Reconect_delay == 0, do not reconnect. (#1795)
* Update simulator.py method docstring (#1793)
* add type to isError. (#1781)
* Allow repr(ModbusException) to return complete information (#1779)
* Update docs. (#1777)


Version 3.5.2
Expand Down
5 changes: 3 additions & 2 deletions MAKE_RELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ Prepare/make release on dev.
* Control / Update API_changes.rst
* Update CHANGELOG.rst
* Add commits from last release, but selectively !
git log --oneline v3.5.1..HEAD > commit.log
git log --pretty="%an" v3.0.0..HEAD | sort -uf >> AUTHORS
git log --oneline v3.5.3..HEAD > commit.log
git log --pretty="%an" v3.0.0..HEAD | sort -uf > authors.log
update AUTHORS
cd doc; ./build_html
* Commit, push and merge.
* Checkout master locally
* git pull dev
* git merge dev
* git push
* git branch -D master
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ There are challenges small and large not only programming but also documentation
Supported versions
------------------

Version `3.5.2 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.5.2>`_ is the current release.
Version `3.5.3 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.5.3>`_ is the current release.

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

Expand Down
Binary file modified doc/source/_static/examples.tgz
Binary file not shown.
Binary file modified doc/source/_static/examples.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion pymodbus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
from pymodbus.logging import pymodbus_apply_logging_config


__version__ = "3.6.0dev"
__version__ = "3.5.3"
__version_full__ = f"[pymodbus, version {__version__}]"

0 comments on commit 4b95cbe

Please sign in to comment.