Skip to content

Commit 50f500d

Browse files
authoredAug 27, 2024
Prepare v3.7.1 (#2300)
1 parent 0049eaf commit 50f500d

File tree

9 files changed

+22
-8
lines changed

9 files changed

+22
-8
lines changed
 

‎.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ __pycache__/
1313
.venv
1414
.vscode
1515
.vscode/
16-
build/
1716
prof/
18-
/dist/
17+
dist/pymodbus*
18+
build/html
1919
/pymodbus.egg-info/
2020
venv
2121
downloaded_files/

‎AUTHORS.rst

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Thanks to
3333
- Dominique Martinet
3434
- Dries
3535
- duc996
36+
- efdx
3637
- Esco441-91
3738
- Farzad Panahi
3839
- Fredo70

‎CHANGELOG.rst

+18
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ 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.7.1
11+
-------------
12+
* Better error message, when pyserial is missing.
13+
* Slave=0 will return first response, used to identify device address. (#2298)
14+
* Feature/add simulator api skeleton (#2274)
15+
* Correct max. read size for registers. (#2295)
16+
* Ruff complains, due to upgrade. (#2296)
17+
* Properly process 'slaves' argument (#2292)
18+
* Update repl requirement to >= 2.0.4 (#2291)
19+
* Fix aiohttp < 3.9.0 (#2289)
20+
* Simplify framer test setup (#2290)
21+
* Clean up ModbusControlBlock (#2288)
22+
* example docstrings diag_message -> pdu.diag_message (#2286)
23+
* Explain version schema (#2284)
24+
* Add more testing for WriteRegisters. (#2280)
25+
* Proof for issue 2273. (#2277)
26+
* Update simulator tests. (#2276)
27+
1028

1129
Version 3.7.0
1230
-------------

‎build/.gitkeep

Whitespace-only changes.

‎build/README

-5
This file was deleted.

‎dist/.gitkeep

Whitespace-only changes.

‎doc/source/_static/examples.tgz

-276 Bytes
Binary file not shown.

‎doc/source/_static/examples.zip

5 Bytes
Binary file not shown.

‎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.7.1dev"
21+
__version__ = "3.7.1"
2222
__version_full__ = f"[pymodbus, version {__version__}]"

0 commit comments

Comments
 (0)
Please sign in to comment.