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
20
20
- André Srinivasan
21
21
- banana-sun
22
22
- Blaise Thompson
23
+ - CapraTheBest
23
24
- cgernert
24
25
- corollaries
25
26
- Chandler Riehm
@@ -46,6 +47,7 @@ Thanks to
46
47
- Joe Burmeister
47
48
- Jonathan Reichelt Gjertsen
48
49
- julian
50
+ - Justin Standring
49
51
- Kenny Johansson
50
52
- Matthias Straka
51
53
- laund
Original file line number Diff line number Diff line change @@ -7,6 +7,29 @@ helps make pymodbus a better product.
7
7
8
8
:ref: `Authors `: contains a complete list of volunteers have contributed to each major version.
9
9
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
+
10
33
Version 3.6.5
11
34
-------------
12
35
* 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.
14
14
* Control / Update API_changes.rst
15
15
* Update CHANGELOG.rst
16
16
* 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
20
20
cd doc; ./build_html
21
21
* rm -rf build/* dist/*
22
+ * git checkout build
22
23
* python3 -m build
23
24
* twine check dist/*
24
25
* Commit, push and merge.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ PyModbus - A Python Modbus Stack
11
11
12
12
Pymodbus is a full Modbus protocol implementation offering client/server with synchronous/asynchronous API a well as simulators.
13
13
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 >`_.
15
15
16
16
Bleeding edge (not released) is `dev <https://github.com/pymodbus-dev/pymodbus/tree/dev >`_.
17
17
Original file line number Diff line number Diff line change 18
18
from pymodbus .pdu import ExceptionResponse
19
19
20
20
21
- __version__ = "3.7.0dev "
21
+ __version__ = "3.6.6 "
22
22
__version_full__ = f"[pymodbus, version { __version__ } ]"
You can’t perform that action at this time.
0 commit comments