Skip to content

Commit b6f3c2d

Browse files
committed
Prepare v3.8.4. (#2564)
1 parent 010283c commit b6f3c2d

File tree

8 files changed

+20
-5
lines changed

8 files changed

+20
-5
lines changed

AUTHORS.rst

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Thanks to
2424
- andrew-harness
2525
- banana-sun
2626
- Blaise Thompson
27+
- Breina
2728
- CapraTheBest
2829
- cgernert
2930
- corollaries
@@ -77,6 +78,7 @@ Thanks to
7778
- peufeu2
7879
- Philip Couling
7980
- Philip Jones
81+
- Robin Trabert
8082
- Qi Li
8183
- Sebastian Machuca
8284
- Sefa Keleş

CHANGELOG.rst

+13
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ 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.4
11+
-------------
12+
* Parameterize string encoding in convert_to_registers and convert_from_registers (#2558)
13+
* Fix client modbus function calls in remote by adding count as keyword argument (#2563)
14+
* Fix exception text in ModbusPDU.validateAddress (#2551)
15+
* Typo arround `no_response_expected` (#2550)
16+
* Trace new connection in server. (#2549)
17+
* Add trace to server.
18+
* Update misleading DATATYPE text. (#2547)
19+
* Fix pylint.
20+
* Clarify server usage.
21+
* Solve instable transaction testing. (#2538)
22+
1023
Version 3.8.3
1124
-------------
1225
* Remove deprecate from payload. (#2532)

MAKE_RELEASE.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ 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.3..HEAD > commit.log
19-
git log --pretty="%an" v3.8.3..HEAD | sort -uf > authors.log
18+
git log --oneline v3.8.4..HEAD > commit.log
19+
git log --pretty="%an" v3.8.4..HEAD | sort -uf > authors.log
2020
update AUTHORS.rst and CHANGELOG.rst
2121
cd doc; ./build_html
2222
* rm -rf build/* dist/*

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Upgrade examples:
2626
- 3.7.1 -> 3.8.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.3 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.8.3>`_.
29+
Current release is `3.8.4 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.8.4>`_.
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

0 Bytes
Binary file not shown.

doc/source/roadmap.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ 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.4 bug fix release, with:
18+
- 3.8.5 bug fix release, with:
1919
- Currently not planned
2020
- 3.9.0, with:
2121
- All of branch wait_next_api

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__ = "4.0.0dev"
21+
__version__ = "3.8.4"
2222
__version_full__ = f"[pymodbus, version {__version__}]"

0 commit comments

Comments
 (0)