Skip to content

Commit 70b2199

Browse files
committed
Prepare v3.6.7.
1 parent 629e874 commit 70b2199

File tree

7 files changed

+22
-3
lines changed

7 files changed

+22
-3
lines changed

AUTHORS.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Thanks to
2929
- dhoomakethu
3030
- doelki
3131
- DominicDataP
32+
- Dominique Martinet
3233
- Dries
3334
- duc996
3435
- Farzad Panahi
@@ -38,13 +39,15 @@ Thanks to
3839
- Hangyu Fan
3940
- Hayden Roche
4041
- Iktek
42+
- Ilkka Ollakka
4143
- Jakob Ruhe
4244
- Jakob Schlyter
4345
- James Braza
4446
- James Hilliard
4547
- jan iversen
4648
- Jerome Velociter
4749
- Joe Burmeister
50+
- John Miko
4851
- Jonathan Reichelt Gjertsen
4952
- julian
5053
- Justin Standring

CHANGELOG.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ 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.6.7
11+
-------------
12+
Add lock to async requests, correct logging and length calc. (FIX, not on dev)
13+
test_simulator: use unused_tcp_port fixture (#2141)
14+
streamline imports in Factory.py (#2140)
15+
Secure testing is done with pymodbus in PR. (#2136)
16+
Fix link to github in README (#2134)
17+
Wildcard exception catch from pyserial. (#2125)
18+
Problem with stale CI. (#2117)
19+
Add connection exception to list of exceptions catpured in retries (#2113)
20+
Move on_reconnect to client level (#2111)
21+
Bump github stale. (#2110)
22+
update package_test_tool (add 4 test scenarios) (#2107)
23+
Bump dependencies. (#2108)
24+
Cancel send if no connection. (#2103)
25+
26+
1027
Version 3.6.6
1128
-------------
1229
* Solve transport close() as not inherited method. (#2098)

MAKE_RELEASE.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Prepare/make release on dev.
1919
update AUTHORS.rst and CHANGELOG.rst
2020
cd doc; ./build_html
2121
* rm -rf build/* dist/*
22-
* git checkout build
2322
* python3 -m build
2423
* twine check dist/*
2524
* Commit, push and merge.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ 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.6 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.6.6>`_.
14+
Current release is `3.6.7 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.6.7>`_.
1515

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

doc/source/_static/examples.tgz

275 Bytes
Binary file not shown.

doc/source/_static/examples.zip

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

0 commit comments

Comments
 (0)