Skip to content

Commit 1629f05

Browse files
authored
Prepare v3.6.6. (#2100)
1 parent 374ca73 commit 1629f05

File tree

7 files changed

+31
-5
lines changed

7 files changed

+31
-5
lines changed

AUTHORS.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

CHANGELOG.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
1033
Version 3.6.5
1134
-------------
1235
* Update framers to ease message integration (only decode/encode) (#2064)

MAKE_RELEASE.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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.

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.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

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

doc/source/_static/examples.tgz

5.55 KB
Binary file not shown.

doc/source/_static/examples.zip

-10 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.6"
2222
__version_full__ = f"[pymodbus, version {__version__}]"

0 commit comments

Comments
 (0)