Skip to content

Commit adb4fc7

Browse files
authored
Prepare 3.11.4 (#2815)
1 parent 3aceb40 commit adb4fc7

File tree

7 files changed

+23
-5
lines changed

7 files changed

+23
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ __pycache__/
1616
prof/
1717
dist/pymodbus*
1818
build/html
19+
build/lib
1920
/pymodbus.egg-info/
2021
venv
2122
downloaded_files/

CHANGELOG.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ 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.11.4
11+
--------------
12+
* Prepare 3.11.4 (#2815)
13+
* Update CodeQL to v4. (#2816)
14+
* Solve python3.14 problem (and mypy upgrade). (#2814)
15+
* More doc corrections. (#2813)
16+
* Correct wrong example in doc. (#2812)
17+
* update to pylint 4 (#2806)
18+
* ExceptionResponse for no_response_expected. (#2801)
19+
* Complete test for SimData / SimDevice. (#2798)
20+
* SimData and simDevice. (#2796)
21+
* Avoid windows CI problem with log testing. (#2797)
22+
* Update doc with 4.0 information. (#2795)
23+
* Make global DataType. (#2794)
24+
* Remove test pymodbus.log file. (#2793)
25+
* Update README. (#2788)
26+
* Activate ruff indent checking. (#2787)
27+
1028
Version 3.11.3
1129
--------------
1230
* Coverage 100% (using no cover, when needed). (#2783)

MAKE_RELEASE.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,12 @@ Prepare/make release on dev.
1515
* Control / Update API_changes.rst
1616
* Update CHANGELOG.rst
1717
* Add commits from last release, but selectively !
18-
git log --oneline v3.8.4..HEAD > commit.log
19-
git log --pretty="%an" v3.8.4..HEAD | sort -uf > authors.log
18+
git log --oneline v3.11.4..HEAD > commit.log
19+
git log --pretty="%an" v3.11.4..HEAD | sort -uf > authors.log
2020
update AUTHORS.rst and CHANGELOG.rst
2121
cd doc; ./build_html
2222
* rm -rf build/* dist/*
2323
* python3 -m build
24-
* pypi-alias pymodbus_ha_core
2524
* twine check dist/*
2625
* Commit, push and merge.
2726
* Wait for CI to complete

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ as well as the
3535
`API_changes <https://github.com/pymodbus-dev/pymodbus/blob/dev/API_changes.rst>`_
3636
files.
3737

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

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

doc/source/_static/examples.tgz

-3 Bytes
Binary file not shown.

doc/source/_static/examples.zip

-7 Bytes
Binary file not shown.

pymodbus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
from pymodbus.pdu.device import ModbusDeviceIdentification
2121

2222

23-
__version__ = "4.0.0dev6"
23+
__version__ = "3.11.4"
2424
__version_full__ = f"[pymodbus, version {__version__}]"

0 commit comments

Comments
 (0)