Skip to content

Commit a165c7a

Browse files
authored
Prepare v3.7.3. (#2361)
1 parent c8cacc5 commit a165c7a

File tree

7 files changed

+48
-5
lines changed

7 files changed

+48
-5
lines changed

AUTHORS.rst

+5
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Thanks to
1616
- Alexander Lanin
1717
- Alexandre CUER
1818
- Alois Hockenschlohe
19+
- Andy Walker
1920
- Arjan
2021
- André Srinivasan
2122
- andrew-harness
@@ -27,6 +28,7 @@ Thanks to
2728
- Chandler Riehm
2829
- Chris Hung
2930
- Christian Krause
31+
- Daniel Rauber
3032
- dhoomakethu
3133
- doelki
3234
- DominicDataP
@@ -64,6 +66,8 @@ Thanks to
6466
- Logan Gunthorpe
6567
- Marko Luther
6668
- Matthias Straka
69+
- Matthias Urlichs
70+
- Michel F
6771
- Mickaël Schoentgen
6872
- Pavel Kostromitinov
6973
- peufeu2
@@ -77,6 +81,7 @@ Thanks to
7781
- Totally a booplicate
7882
- WouterTuinstra
7983
- wriswith
84+
- Yash Jani
8085
- Yohrog
8186
- yyokusa
8287

CHANGELOG.rst

+38
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,44 @@ 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.3
11+
-------------
12+
* 100% test coverage of framers (#2359)
13+
* Framer, final touches. (#2360)
14+
* Readme file renamed (#2357)
15+
* Remove old framers (#2358)
16+
* frameProcessIncomingPacket removed (#2355)
17+
* Cleanup framers (reduce old_framers) (#2342)
18+
* Run CI on PR targeted at wait_next_api.
19+
* Sync client, allow unknown recv msg size. (#2353)
20+
* integrate old rtu framer in new framer (#2344)
21+
* Update README.rst (#2351)
22+
* Client.close should not allow reconnect= (#2347)
23+
* Remove async client.idle_time(). (#2349)
24+
* Client doc, add common methods (base). (#2348)
25+
* Reset receive buffer with send(). (#2343)
26+
* Remove unused protocol_id from pdu (#2340)
27+
* CI run on demand on non-protected branches. (#2339)
28+
* Server listener and client connections have is_server set. (#2338)
29+
* Reopen listener in server if disconnected. (#2337)
30+
* Regroup test. (#2335)
31+
* Improve docs around sync clients and reconnection (#2321)
32+
* transport 100% test coverage (again) (#2333)
33+
* Update actions to new node.js. (#2332)
34+
* Bump 3rd party (#2331)
35+
* Documentation on_connect_callback (#2324)
36+
* Fixes the unexpected implementation of the ModbusSerialClient.connected property (#2327)
37+
* Forward error responses instead of timing out. (#2329)
38+
* Add `stacklevel=2` to logging functions (#2330)
39+
* Fix encoding & decoding of ReadFileRecordResponse (#2319)
40+
* Improvements for example/contib/solar (#2318)
41+
* Update solar.py (#2316)
42+
* Remove double conversion in int (#2315)
43+
* Complete pull request #2310 (#2312)
44+
* fixed type hints for write_register and write_registers (#2309)
45+
* Remove _header from framers. (#2305)
46+
47+
1048
Version 3.7.2
1149
-------------
1250
* Correct README

MAKE_RELEASE.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Prepare/make release on dev.
1414
* Control / Update API_changes.rst
1515
* Update CHANGELOG.rst
1616
* Add commits from last release, but selectively !
17-
git log --oneline v3.7.0..HEAD > commit.log
18-
git log --pretty="%an" v3.7.0..HEAD | sort -uf > authors.log
17+
git log --oneline v3.7.3..HEAD > commit.log
18+
git log --pretty="%an" v3.7.3..HEAD | sort -uf > authors.log
1919
update AUTHORS.rst and CHANGELOG.rst
2020
cd doc; ./build_html
2121
* rm -rf build/* dist/*
@@ -58,4 +58,4 @@ Architecture documentation.
5858
------------------------------------------------------------
5959
* install graphviz
6060
* pyreverse -k -o jpg pymodbus
61-
l
61+
l

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Upgrade examples:
2323
- 3.6.1 -> 3.7.0: Smaller changes to the pymodbus calls might be needed
2424
- 2.5.4 -> 3.0.0: Major changes in the application might be needed
2525

26-
Current release is `3.7.2 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.7.2>`_.
26+
Current release is `3.7.3 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.7.3>`_.
2727

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

doc/source/_static/examples.tgz

-185 Bytes
Binary file not shown.

doc/source/_static/examples.zip

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

0 commit comments

Comments
 (0)