Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Thanks to
- Alexander Lanin
- Alexandre CUER
- Alois Hockenschlohe
- Andy Walker
- Arjan
- André Srinivasan
- andrew-harness
Expand All @@ -27,6 +28,7 @@ Thanks to
- Chandler Riehm
- Chris Hung
- Christian Krause
- Daniel Rauber
- dhoomakethu
- doelki
- DominicDataP
Expand Down Expand Up @@ -64,6 +66,8 @@ Thanks to
- Logan Gunthorpe
- Marko Luther
- Matthias Straka
- Matthias Urlichs
- Michel F
- Mickaël Schoentgen
- Pavel Kostromitinov
- peufeu2
Expand All @@ -77,6 +81,7 @@ Thanks to
- Totally a booplicate
- WouterTuinstra
- wriswith
- Yash Jani
- Yohrog
- yyokusa

Expand Down
38 changes: 38 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,44 @@ helps make pymodbus a better product.

:ref:`Authors`: contains a complete list of volunteers have contributed to each major version.

Version 3.7.3
-------------
* 100% test coverage of framers (#2359)
* Framer, final touches. (#2360)
* Readme file renamed (#2357)
* Remove old framers (#2358)
* frameProcessIncomingPacket removed (#2355)
* Cleanup framers (reduce old_framers) (#2342)
* Run CI on PR targeted at wait_next_api.
* Sync client, allow unknown recv msg size. (#2353)
* integrate old rtu framer in new framer (#2344)
* Update README.rst (#2351)
* Client.close should not allow reconnect= (#2347)
* Remove async client.idle_time(). (#2349)
* Client doc, add common methods (base). (#2348)
* Reset receive buffer with send(). (#2343)
* Remove unused protocol_id from pdu (#2340)
* CI run on demand on non-protected branches. (#2339)
* Server listener and client connections have is_server set. (#2338)
* Reopen listener in server if disconnected. (#2337)
* Regroup test. (#2335)
* Improve docs around sync clients and reconnection (#2321)
* transport 100% test coverage (again) (#2333)
* Update actions to new node.js. (#2332)
* Bump 3rd party (#2331)
* Documentation on_connect_callback (#2324)
* Fixes the unexpected implementation of the ModbusSerialClient.connected property (#2327)
* Forward error responses instead of timing out. (#2329)
* Add `stacklevel=2` to logging functions (#2330)
* Fix encoding & decoding of ReadFileRecordResponse (#2319)
* Improvements for example/contib/solar (#2318)
* Update solar.py (#2316)
* Remove double conversion in int (#2315)
* Complete pull request #2310 (#2312)
* fixed type hints for write_register and write_registers (#2309)
* Remove _header from framers. (#2305)


Version 3.7.2
-------------
* Correct README
Expand Down
6 changes: 3 additions & 3 deletions MAKE_RELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Prepare/make release on dev.
* Control / Update API_changes.rst
* Update CHANGELOG.rst
* Add commits from last release, but selectively !
git log --oneline v3.7.0..HEAD > commit.log
git log --pretty="%an" v3.7.0..HEAD | sort -uf > authors.log
git log --oneline v3.7.3..HEAD > commit.log
git log --pretty="%an" v3.7.3..HEAD | sort -uf > authors.log
update AUTHORS.rst and CHANGELOG.rst
cd doc; ./build_html
* rm -rf build/* dist/*
Expand Down Expand Up @@ -58,4 +58,4 @@ Architecture documentation.
------------------------------------------------------------
* install graphviz
* pyreverse -k -o jpg pymodbus
l
l
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Upgrade examples:
- 3.6.1 -> 3.7.0: Smaller changes to the pymodbus calls might be needed
- 2.5.4 -> 3.0.0: Major changes in the application might be needed

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

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

Expand Down
Binary file modified doc/source/_static/examples.tgz
Binary file not shown.
Binary file modified doc/source/_static/examples.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion pymodbus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
from pymodbus.pdu import ExceptionResponse


__version__ = "3.7.3dev"
__version__ = "3.7.3"
__version_full__ = f"[pymodbus, version {__version__}]"