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
4 changes: 4 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Thanks to
- Ghostkeeper
- Hangyu Fan
- Hayden Roche
- Ifrah Neria
- igorbga
- Iktek
- Ilkka Ollakka
Expand Down Expand Up @@ -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ş
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions MAKE_RELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ as well as the
`API_changes <https://github.com/pymodbus-dev/pymodbus/blob/dev/API_changes.rst>`_
files.

Current release is `3.13.0 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.13.0>`_.
Current release is `3.13.1 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.13.1>`_.

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


__version__ = "4.0.0dev10"
__version__ = "3.13.1"
__version_full__ = f"[pymodbus, version {__version__}]"
Loading