Skip to content

Commit 97681ec

Browse files
authored
Prepare v3.7.0. (#2211)
1 parent d1fe94a commit 97681ec

File tree

9 files changed

+56
-8
lines changed

9 files changed

+56
-8
lines changed

API_changes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ API changes 3.7.0
1616
- PDU classes moved to pymodbus/pdu
1717
- Simulator config custom actions kwargs -> parameters
1818
- Non defined parameters (kwargs) no longer valid
19+
- Drop support for Python 3.8 (its no longer tested, but will probably work)
1920

2021

2122
API changes 3.6.0

AUTHORS.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Thanks to
3333
- Dominique Martinet
3434
- Dries
3535
- duc996
36+
- Esco441-91
3637
- Farzad Panahi
3738
- Fredo70
3839
- Gao Fang
@@ -54,6 +55,7 @@ Thanks to
5455
- julian
5556
- Justin Standring
5657
- Kenny Johansson
58+
- Martyy
5759
- Matthias Straka
5860
- laund
5961
- Logan Gunthorpe

CHANGELOG.rst

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,47 @@ helps make pymodbus a better product.
88
:ref:`Authors`: contains a complete list of volunteers have contributed to each major version.
99

1010

11+
Version 3.7.0
12+
-------------
13+
* Remove unneeded client parameters. (#2272)
14+
* simulator: Fix context single parameter (#2264)
15+
* buildPacket can be used for Request and Response (#2262)
16+
* More descriptive decoder exceptions (#2260)
17+
* Cleanup ReadWriteMultipleRegistersResponse and testing (#2261)
18+
* Feature/simulator addressing (#2258)
19+
* Framer optimization (apart from RTU). (#2146)
20+
* Use mock.patch.object to avoid protected access errors. (#2251)
21+
* Fix some mypy type checking errors in test_transaction.py (#2250)
22+
* Update check for windows platform (#2247)
23+
* Logging 100% coverage. (#2248)
24+
* CI, Block draft PRs to use CPU minutes. (#2245, #2246)
25+
* Remove kwargs client. (#2243, #2244, #2257)
26+
* remove kwargs PDU messagees. (#2240)
27+
* Remove message_generator example (not part of API). (#2239)
28+
* Update dev dependencies (#2241)
29+
* Fix ruff check in CI (#2242)
30+
* Remove kwargs. (#2236, #2237)
31+
* Simulator config, kwargs -> parameters. (#2235)
32+
* Refactor transaction handling to better separate async and sync code. (#2232)
33+
* Simplify some BinaryPayload pack operations (#2224)
34+
* Fix writing to serial (rs485) on windows os. (#2191)
35+
* Remember to remove serial writer. (#2209)
36+
* Transaction_id for serial == 0. (#2208)
37+
* Solve pylint error.
38+
* Sync TLS needs time before reading frame (#2186)
39+
* Update transaction.py (#2174)
40+
* PDU classes --> pymodbus/pdu. (#2160)
41+
* Speed up no data detection. (#2150)
42+
* RTU decode hunt part. (#2138)
43+
* Dislodge client classes from modbusProtocol. (#2137)
44+
* Merge new message layer and old framer directory. (#2135)
45+
* Coverage == 91%. (#2132)
46+
* Remove binary_framer. (#2130)
47+
* on_reconnect_callback --> on_connect_callback. (#2122)
48+
* Remove certfile,keyfile,password from TLS client. (#2121)
49+
* Drop support for python 3.8 (#2112)
50+
51+
1152
Version 3.6.9
1253
-------------
1354
* Remove python 3.8 from CI

MAKE_RELEASE.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ Making a release.
88
------------------------------------------------------------
99
Prepare/make release on dev.
1010
------------------------------------------------------------
11-
* Make pull request "prepare v3.6.x", with the following:
11+
* Make pull request "prepare v3.7.x", with the following:
1212
* Update pymodbus/__init__.py with version number (__version__ X.Y.Zpre)
1313
* Update README.rst "Supported versions"
1414
* Control / Update API_changes.rst
1515
* Update CHANGELOG.rst
1616
* Add commits from last release, but selectively !
17-
git log --oneline v3.6.6..HEAD > commit.log
18-
git log --pretty="%an" v3.6.6..HEAD | sort -uf > authors.log
17+
git log --oneline v3.7.0..HEAD > commit.log
18+
git log --pretty="%an" v3.7.0..HEAD | sort -uf > authors.log
1919
update AUTHORS.rst and CHANGELOG.rst
2020
cd doc; ./build_html
2121
* rm -rf build/* dist/*
@@ -30,13 +30,13 @@ Prepare/make release on dev.
3030
* git branch -D master
3131
* wait for CI to complete on all branches
3232
* On github "prepare release"
33-
* Create tag e.g. v3.4.0dev0
34-
* Title "pymodbus v3.4.0dev0"
33+
* Create tag e.g. v3.7.0dev0
34+
* Title "pymodbus v3.7.0dev0"
3535
* do NOT generate release notes, but copy from CHANGELOG.rst
3636
* make release (remember to mark pre-release if so)
3737
* on local repo
3838
* git pull, check release tag is pulled
39-
* git checkout v3.0.0dev0
39+
* git checkout v3.7.0dev0
4040
* rm -rf build/* dist/*
4141
* python3 -m build
4242
* twine upload dist/* (upload to pypi)

README.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@ PyModbus - A Python Modbus Stack
1111

1212
Pymodbus is a full Modbus protocol implementation offering client/server with synchronous/asynchronous API a well as simulators.
1313

14-
Current release is `3.6.9 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.6.9>`_.
14+
Current release is `3.7.0 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.7.0>`_.
1515

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

18+
Waiting for v3.8.0 (not released) is `wait3.8.0 <https://github.com/pymodbus-dev/pymodbus/tree/wait3.8.0>`_. This contains
19+
dev + merged pull requests that have API changes, and thus have to wait.
20+
1821
All changes are described in `release notes <https://pymodbus.readthedocs.io/en/latest/source/changelog.html>`_
1922
and all API changes are `documented <https://pymodbus.readthedocs.io/en/latest/source/api_changes.html>`_
2023

doc/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Please select a topic in the left hand column.
99
:hidden:
1010

1111
source/readme
12+
source/api_changes
1213
source/client
1314
source/server
1415
source/repl

doc/source/_static/examples.tgz

851 Bytes
Binary file not shown.

doc/source/_static/examples.zip

-357 Bytes
Binary file not shown.

pymodbus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
from pymodbus.pdu import ExceptionResponse
1919

2020

21-
__version__ = "3.7.0dev3"
21+
__version__ = "3.7.0"
2222
__version_full__ = f"[pymodbus, version {__version__}]"

0 commit comments

Comments
 (0)