File tree Expand file tree Collapse file tree 7 files changed +31
-5
lines changed Expand file tree Collapse file tree 7 files changed +31
-5
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ Thanks to
2020- André Srinivasan
2121- banana-sun
2222- Blaise Thompson
23+ - CapraTheBest
2324- cgernert
2425- corollaries
2526- Chandler Riehm
@@ -46,6 +47,7 @@ Thanks to
4647- Joe Burmeister
4748- Jonathan Reichelt Gjertsen
4849- julian
50+ - Justin Standring
4951- Kenny Johansson
5052- Matthias Straka
5153- laund
Original file line number Diff line number Diff line change @@ -7,6 +7,29 @@ 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.6
11+ -------------
12+ * Solve transport close() as not inherited method. (#2098)
13+ * enable `mypy --check-untyped-defs ` (#2096)
14+ * Add get_expected_response_length to transaction.
15+ * Remove control encode in framersRemove control encode in framers. (#2095)
16+ * Bump codeql in CI to v3. (#2093)
17+ * Improve server types (#2092)
18+ * Remove pointless try/except (#2091)
19+ * Improve transport types (#2090)
20+ * Use explicit ValueError when called with incorrect function code (#2089)
21+ * update message tests (incorporate all old tests). (#2088)
22+ * Improve simulator type hints (#2084)
23+ * Cleanup dead resetFrame code (#2082)
24+ * integrate message.encode() into framer.buildPacket. (#2062)
25+ * Repair client close() (intern= is needed for ModbusProtocol). (#2080)
26+ * Updated Message_Parser example (#2079)
27+ * Fix #2069 use released repl from pypi (#2077)
28+ * Fix field encoding of Read File Record Response (#2075)
29+ * Improve simulator types (#2076)
30+ * Bump actions. (#2071)
31+
32+
1033Version 3.6.5
1134-------------
1235* Update framers to ease message integration (only decode/encode) (#2064)
Original file line number Diff line number Diff line change @@ -14,11 +14,12 @@ 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.6.5 ..HEAD > commit.log
18- git log --pretty="%an" v3.6.1 ..HEAD | sort -uf > authors.log
19- update AUTHORS
17+ git log --oneline v3.6.6 ..HEAD > commit.log
18+ git log --pretty="%an" v3.6.6 ..HEAD | sort -uf > authors.log
19+ update AUTHORS.rst and CHANGELOG.rst
2020 cd doc; ./build_html
2121 * rm -rf build/* dist/*
22+ * git checkout build
2223 * python3 -m build
2324 * twine check dist/*
2425 * Commit, push and merge.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ PyModbus - A Python Modbus Stack
1111
1212Pymodbus is a full Modbus protocol implementation offering client/server with synchronous/asynchronous API a well as simulators.
1313
14- Current release is `3.6.5 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.6.5 >`_.
14+ Current release is `3.6.6 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.6.6 >`_.
1515
1616Bleeding edge (not released) is `dev <https://github.com/pymodbus-dev/pymodbus/tree/dev >`_.
1717
Original file line number Diff line number Diff line change 1818from pymodbus .pdu import ExceptionResponse
1919
2020
21- __version__ = "3.7.0dev "
21+ __version__ = "3.6.6 "
2222__version_full__ = f"[pymodbus, version { __version__ } ]"
You can’t perform that action at this time.
0 commit comments