Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ __pycache__/
prof/
dist/pymodbus*
build/html
build/lib
/pymodbus.egg-info/
venv
downloaded_files/
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ helps make pymodbus a better product.

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

Version 3.11.4
--------------
* Prepare 3.11.4 (#2815)
* Update CodeQL to v4. (#2816)
* Solve python3.14 problem (and mypy upgrade). (#2814)
* More doc corrections. (#2813)
* Correct wrong example in doc. (#2812)
* update to pylint 4 (#2806)
* ExceptionResponse for no_response_expected. (#2801)
* Complete test for SimData / SimDevice. (#2798)
* SimData and simDevice. (#2796)
* Avoid windows CI problem with log testing. (#2797)
* Update doc with 4.0 information. (#2795)
* Make global DataType. (#2794)
* Remove test pymodbus.log file. (#2793)
* Update README. (#2788)
* Activate ruff indent checking. (#2787)

Version 3.11.3
--------------
* Coverage 100% (using no cover, when needed). (#2783)
Expand Down
5 changes: 2 additions & 3 deletions MAKE_RELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@ Prepare/make release on dev.
* Control / Update API_changes.rst
* Update CHANGELOG.rst
* Add commits from last release, but selectively !
git log --oneline v3.8.4..HEAD > commit.log
git log --pretty="%an" v3.8.4..HEAD | sort -uf > authors.log
git log --oneline v3.11.4..HEAD > commit.log
git log --pretty="%an" v3.11.4..HEAD | sort -uf > authors.log
update AUTHORS.rst and CHANGELOG.rst
cd doc; ./build_html
* rm -rf build/* dist/*
* python3 -m build
* pypi-alias pymodbus_ha_core
* twine check dist/*
* Commit, push and merge.
* Wait for CI to complete
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ as well as the
`API_changes <https://github.com/pymodbus-dev/pymodbus/blob/dev/API_changes.rst>`_
files.

Current release is `3.11.3 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.11.3>`_.
Current release is `3.11.4 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.11.4>`_.

Bleeding edge (not released) is `dev <https://github.com/pymodbus-dev/pymodbus/tree/dev>`_.

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 @@ -20,5 +20,5 @@
from pymodbus.pdu.device import ModbusDeviceIdentification


__version__ = "4.0.0dev6"
__version__ = "3.11.4"
__version_full__ = f"[pymodbus, version {__version__}]"