diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6aac1a0eb..5240f2bcf 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,16 @@ +version 3.3.2 +---------------------------------------------------------- +* Fix RemoteSlaveContext (#1599) +* Change version follow PEP 440. (#1609) +* Fix regression with REPL server not listening (#1604) +* Fix write function codes (#1598) +* Release corrections. (#1586) + +Thanks to: + Alex + Fredo70 + jan iversen + version 3.3.1 ---------------------------------------------------------- * transport fixes and 100% test coverage. (#1580) diff --git a/MAKE_RELEASE.rst b/MAKE_RELEASE.rst index 4625d3b35..e3ecf0d08 100644 --- a/MAKE_RELEASE.rst +++ b/MAKE_RELEASE.rst @@ -13,8 +13,7 @@ Prepare/make release on dev. * 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 v3.3.0..HEAD | grep Author > contributors.log + git log --pretty="format:%h - %an - %s" v3.3.0..HEAD > commit.log * Commit, push and merge. * Checkout master locally * git merge dev diff --git a/README.rst b/README.rst index 584615b95..14cfd8f7a 100644 --- a/README.rst +++ b/README.rst @@ -20,9 +20,9 @@ There are challenges small and large not only programming but also documentation Supported versions ------------------------------------------------------------ -Version `2.5.3 `_ is the last 2.x release (Supports python >= 2.7, no longer supported). +Version `2.5.3 `_ is the last 2.x release (python >= 2.7, no longer supported). -Version `3.3.1 `_ is the current release (Supports Python >= 3.8). +Version `3.3.2 `_ is the current release (Tested with Python >= 3.8). .. important:: All API changes after 3.0.0 are documented in `API_changes.rst `_ diff --git a/pymodbus/__init__.py b/pymodbus/__init__.py index 7f65089b5..86fa2e746 100644 --- a/pymodbus/__init__.py +++ b/pymodbus/__init__.py @@ -12,5 +12,5 @@ from pymodbus.logging import pymodbus_apply_logging_config -__version__ = "3.4.0dev" +__version__ = "3.3.2" __version_full__ = f"[pymodbus, version {__version__}]"