Skip to content

Commit aa8c479

Browse files
authored
Prepare v3.8.1 (#2511)
1 parent f93b722 commit aa8c479

File tree

7 files changed

+18
-3
lines changed

7 files changed

+18
-3
lines changed

AUTHORS.rst

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Thanks to
1616
- Alex Ruddick
1717
- Alexander Lanin
1818
- Alexandre CUER
19+
- alexis-care
1920
- Alois Hockenschlohe
2021
- Andy Walker
2122
- Arjan
@@ -30,6 +31,7 @@ Thanks to
3031
- Chris Hung
3132
- Christian Krause
3233
- Christian Pfisterer
34+
- daanwtb
3335
- Daniel Rauber
3436
- dhoomakethu
3537
- doelki
@@ -74,6 +76,7 @@ Thanks to
7476
- Pavel Kostromitinov
7577
- peufeu2
7678
- Philip Couling
79+
- Philip Jones
7780
- Qi Li
7881
- Sebastian Machuca
7982
- Sefa Keleş

CHANGELOG.rst

+11
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ 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.8.1
11+
-------------
12+
* Convert endianness (#2506)
13+
* Fix sync serial client, loop. (#2510)
14+
* Correct future. (#2507)
15+
* Correct #2501 (#2504)
16+
* Raise exception on no response in async client. (#2502)
17+
* re-instatiate Future on reconnect (#2501)
18+
* Remove all trailing zeroes during string decoding (#2493)
19+
* Fix too many sync client log messages. (#2491)
20+
1021
Version 3.8.0
1122
-------------
1223
* slave_id -> dev_id (internally). (#2486)

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Upgrade examples:
2626
- 3.6.1 -> 3.7.0: Smaller changes to the pymodbus calls might be needed
2727
- 2.5.4 -> 3.0.0: Major changes in the application might be needed
2828

29-
Current release is `3.8.0 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.8.0>`_.
29+
Current release is `3.8.1 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.8.1>`_.
3030

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

doc/source/_static/examples.tgz

-594 KB
Binary file not shown.

doc/source/_static/examples.zip

218 Bytes
Binary file not shown.

doc/source/roadmap.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ It is the community that decides how pymodbus evolves NOT the maintainers !
1515

1616
The following bullet points are what the maintainers focus on:
1717

18-
- 3.8.1, bug fix release, with:
18+
- 3.8.2, bug fix release, with:
1919
- Currently not planned
2020
- 3.9.0, with:
21+
- All of branch wait_next_api
2122
- ModbusControlBlock pr slave
2223
- New custom PDU (function codes)
2324
- Remove remote_datastore

pymodbus/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
from pymodbus.pdu import ExceptionResponse
1919

2020

21-
__version__ = "3.9.0dev"
21+
__version__ = "3.8.1"
2222
__version_full__ = f"[pymodbus, version {__version__}]"

0 commit comments

Comments
 (0)