Skip to content

Commit aba7c92

Browse files
authored
Prepare v3.5.1 (#1768)
1 parent 4954037 commit aba7c92

File tree

4 files changed

+19
-5
lines changed

4 files changed

+19
-5
lines changed

API_changes.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ Version 3.6.0 (future)
77
-------------
88

99

10-
10+
-------------
11+
Version 3.5.1
12+
-------------
13+
No changes.
1114

1215
-------------
1316
Version 3.5.0

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
All these version were not possible without volunteers!
22
`AUTHORS` contains a complete list for each major version.
33

4+
version 3.5.1
5+
----------------------------------------------------------
6+
- Always close socket on error (reset_sock). (#1767)
7+
- Revert reset_socket change.
8+
- add close_comm_on_error to example.
9+
- Test long term (HomeAsistant problem). (#1765)
10+
- Update ruff to 0.0.287 (#1764)
11+
- Remove references to ModbusSerialServer.start (#1759) (#1762)
12+
- Readd test to get 100% coverage.
13+
- transport: Don't raise a RunTimeError in ModbusProtocol.error_received() (#1758)
14+
415
version 3.5.0
516
----------------------------------------------------------
617
- Async retry (#1752)

MAKE_RELEASE.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Prepare/make release on dev.
1212
* Update pymodbus/__init__.py with version number (__version__ X.Y.Zpre)
1313
* Update README.rst "Supported versions"
1414
* Update CHANGELOG.rst
15-
* Add commits from last release, but selectively !
16-
git log --oneline v3.3.0..HEAD > commit.log
17-
git log --pretty="%an" v3.0.0..HEAD | sort -uf >> AUTHORS
15+
* Add commits from last release, but kselectively !
16+
git log --oneline v3.5.1..HEAD > commit.log
17+
git log --pretty="%an" v3.5.1..HEAD | sort -uf >> AUTHORS
1818
update AUTHORS
1919
* Commit, push and merge.
2020
* Checkout master locally

pymodbus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
from pymodbus.logging import pymodbus_apply_logging_config
1313

1414

15-
__version__ = "3.6.0dev"
15+
__version__ = "3.5.1"
1616
__version_full__ = f"[pymodbus, version {__version__}]"

0 commit comments

Comments
 (0)