Skip to content

Commit bff39f6

Browse files
committed
Prepare v.3.3.2.
1 parent bd2cf8a commit bff39f6

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
version 3.3.2
2+
----------------------------------------------------------
3+
* Fix RemoteSlaveContext (#1599)
4+
* Change version follow PEP 440. (#1609)
5+
* Fix regression with REPL server not listening (#1604)
6+
* Fix write function codes (#1598)
7+
* Release corrections. (#1586)
8+
9+
Thanks to:
10+
Alex
11+
Fredo70
12+
jan iversen
13+
114
version 3.3.1
215
----------------------------------------------------------
316
* transport fixes and 100% test coverage. (#1580)

MAKE_RELEASE.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ Prepare/make release on dev.
1313
* Update README.rst "Supported versions"
1414
* Update CHANGELOG.rst
1515
* Add commits from last release, but selectively !
16-
git log --oneline v3.3.0..HEAD > commit.log
17-
git log v3.3.0..HEAD | grep Author > contributors.log
16+
git log --pretty="format:%h - %an - %s" v3.3.0..HEAD > commit.log
1817
* Commit, push and merge.
1918
* Checkout master locally
2019
* git merge dev

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ There are challenges small and large not only programming but also documentation
2020
Supported versions
2121
------------------------------------------------------------
2222

23-
Version `2.5.3 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v2.5.3>`_ is the last 2.x release (Supports python >= 2.7, no longer supported).
23+
Version `2.5.3 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v2.5.3>`_ is the last 2.x release (python >= 2.7, no longer supported).
2424

25-
Version `3.3.1 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.3.1>`_ is the current release (Supports Python >= 3.8).
25+
Version `3.3.2 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.3.2>`_ is the current release (Tested with Python >= 3.8).
2626

2727
.. important::
2828
All API changes after 3.0.0 are documented in `API_changes.rst <https://github.com/pymodbus-dev/pymodbus/blob/dev/API_changes.rst>`_

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.4.0dev"
15+
__version__ = "3.3.2"
1616
__version_full__ = f"[pymodbus, version {__version__}]"

0 commit comments

Comments
 (0)