File tree 8 files changed +20
-5
lines changed
8 files changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ Thanks to
24
24
- andrew-harness
25
25
- banana-sun
26
26
- Blaise Thompson
27
+ - Breina
27
28
- CapraTheBest
28
29
- cgernert
29
30
- corollaries
@@ -77,6 +78,7 @@ Thanks to
77
78
- peufeu2
78
79
- Philip Couling
79
80
- Philip Jones
81
+ - Robin Trabert
80
82
- Qi Li
81
83
- Sebastian Machuca
82
84
- Sefa Keleş
Original file line number Diff line number Diff line change @@ -7,6 +7,19 @@ helps make pymodbus a better product.
7
7
8
8
:ref: `Authors `: contains a complete list of volunteers have contributed to each major version.
9
9
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
+
10
23
Version 3.8.3
11
24
-------------
12
25
* Remove deprecate from payload. (#2532)
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ Prepare/make release on dev.
15
15
* Control / Update API_changes.rst
16
16
* Update CHANGELOG.rst
17
17
* 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
20
20
update AUTHORS.rst and CHANGELOG.rst
21
21
cd doc; ./build_html
22
22
* rm -rf build/* dist/*
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Upgrade examples:
26
26
- 3.7.1 -> 3.8.0: Smaller changes to the pymodbus calls might be needed
27
27
- 2.5.4 -> 3.0.0: Major changes in the application might be needed
28
28
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 >`_.
30
30
31
31
Bleeding edge (not released) is `dev <https://github.com/pymodbus-dev/pymodbus/tree/dev >`_.
32
32
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ It is the community that decides how pymodbus evolves NOT the maintainers !
15
15
16
16
The following bullet points are what the maintainers focus on:
17
17
18
- - 3.8.4 bug fix release, with:
18
+ - 3.8.5 bug fix release, with:
19
19
- Currently not planned
20
20
- 3.9.0, with:
21
21
- All of branch wait_next_api
Original file line number Diff line number Diff line change 18
18
from pymodbus .pdu import ExceptionResponse
19
19
20
20
21
- __version__ = "4.0.0dev "
21
+ __version__ = "3.8.4 "
22
22
__version_full__ = f"[pymodbus, version { __version__ } ]"
You can’t perform that action at this time.
0 commit comments