Skip to content

Commit

Permalink
Prepare v3.5.1 (#1768)
Browse files Browse the repository at this point in the history
  • Loading branch information
janiversen authored Sep 8, 2023
1 parent 4954037 commit aba7c92
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
5 changes: 4 additions & 1 deletion API_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ Version 3.6.0 (future)
-------------



-------------
Version 3.5.1
-------------
No changes.

-------------
Version 3.5.0
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
All these version were not possible without volunteers!
`AUTHORS` contains a complete list for each major version.

version 3.5.1
----------------------------------------------------------
- Always close socket on error (reset_sock). (#1767)
- Revert reset_socket change.
- add close_comm_on_error to example.
- Test long term (HomeAsistant problem). (#1765)
- Update ruff to 0.0.287 (#1764)
- Remove references to ModbusSerialServer.start (#1759) (#1762)
- Readd test to get 100% coverage.
- transport: Don't raise a RunTimeError in ModbusProtocol.error_received() (#1758)

version 3.5.0
----------------------------------------------------------
- Async retry (#1752)
Expand Down
6 changes: 3 additions & 3 deletions MAKE_RELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Prepare/make release on dev.
* Update pymodbus/__init__.py with version number (__version__ X.Y.Zpre)
* Update README.rst "Supported versions"
* Update CHANGELOG.rst
* Add commits from last release, but selectively !
git log --oneline v3.3.0..HEAD > commit.log
git log --pretty="%an" v3.0.0..HEAD | sort -uf >> AUTHORS
* Add commits from last release, but kselectively !
git log --oneline v3.5.1..HEAD > commit.log
git log --pretty="%an" v3.5.1..HEAD | sort -uf >> AUTHORS
update AUTHORS
* Commit, push and merge.
* Checkout master locally
Expand Down
2 changes: 1 addition & 1 deletion pymodbus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
from pymodbus.logging import pymodbus_apply_logging_config


__version__ = "3.6.0dev"
__version__ = "3.5.1"
__version_full__ = f"[pymodbus, version {__version__}]"

0 comments on commit aba7c92

Please sign in to comment.