diff --git a/AUTHORS.rst b/AUTHORS.rst index 6c1a3c312..08a99b7c8 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -55,6 +55,7 @@ Thanks to - Ghostkeeper - Hangyu Fan - Hayden Roche +- Ifrah Neria - igorbga - Iktek - Ilkka Ollakka @@ -88,11 +89,14 @@ Thanks to - Maxime LEURENT - Michel F - Mickaël Schoentgen +- MrAlaskan - Pavel Kostromitinov - peufeu2 - Philip Couling +- Philip Jägenstedt - Philip Jones - Robin Trabert +- rubenmendes-eaton - Qi Li - Sebastian Machuca - Sefa Keleş diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c07eda0f3..927044d5d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,18 @@ helps make pymodbus a better product. :ref:`Authors`: contains a complete list of volunteers have contributed to each major version. +Version 3.13.1 +-------------- +* Update CI Workflows. +* Fix dropping the next frame after a skipped one (#2934) +* Correct Log repeat. (#2931) +* Fix address bounds check in get_reg_block (#2926) +* Fix reg_count calc (#2924) +* guard short frames and validate mbap in TLS framer (#2921) +* Use latest uv in CI. (#2922) +* Change MIN_SIZE in ascii frame. (#2920) +* Harden ASCII framer. (#2918) + Version 3.13.0 -------------- * Correct missing types. (#2914) diff --git a/MAKE_RELEASE.rst b/MAKE_RELEASE.rst index 21d28d347..cf3e101d0 100644 --- a/MAKE_RELEASE.rst +++ b/MAKE_RELEASE.rst @@ -14,8 +14,8 @@ Prepare/make release on dev. * Control / Update API_changes.rst * Update CHANGELOG.rst * Add commits from last release, but selectively ! - git log --oneline v3.13.0..HEAD > commit.log - git log --pretty="%an" v3.13.0..HEAD | sort -uf > authors.log + git log --oneline v3.13.1..HEAD > commit.log + git log --pretty="%an" v3.13.1..HEAD | sort -uf > authors.log update AUTHORS.rst and CHANGELOG.rst cd doc; ./build_html * rm -rf build/* dist/* diff --git a/README.rst b/README.rst index 67c9290e6..ec3cc8409 100644 --- a/README.rst +++ b/README.rst @@ -36,7 +36,7 @@ as well as the `API_changes `_ files. -Current release is `3.13.0 `_. +Current release is `3.13.1 `_. Bleeding edge (not released) is `dev `_. diff --git a/doc/source/_static/examples.tgz b/doc/source/_static/examples.tgz index 44ab26b00..d45337937 100644 Binary files a/doc/source/_static/examples.tgz and b/doc/source/_static/examples.tgz differ diff --git a/doc/source/_static/examples.zip b/doc/source/_static/examples.zip index 98ba0f221..b6f5c1a04 100644 Binary files a/doc/source/_static/examples.zip and b/doc/source/_static/examples.zip differ diff --git a/pymodbus/__init__.py b/pymodbus/__init__.py index 6246b3f05..45f91d322 100644 --- a/pymodbus/__init__.py +++ b/pymodbus/__init__.py @@ -21,5 +21,5 @@ from .pdu.device import ModbusDeviceIdentification -__version__ = "4.0.0dev10" +__version__ = "3.13.1" __version_full__ = f"[pymodbus, version {__version__}]"