File tree Expand file tree Collapse file tree 4 files changed +17
-5
lines changed Expand file tree Collapse file tree 4 files changed +17
-5
lines changed Original file line number Diff line number Diff line change
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
+
1
14
version 3.3.1
2
15
----------------------------------------------------------
3
16
* transport fixes and 100% test coverage. (#1580)
Original file line number Diff line number Diff line change @@ -13,8 +13,7 @@ Prepare/make release on dev.
13
13
* Update README.rst "Supported versions"
14
14
* Update CHANGELOG.rst
15
15
* 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
18
17
* Commit, push and merge.
19
18
* Checkout master locally
20
19
* git merge dev
Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ There are challenges small and large not only programming but also documentation
20
20
Supported versions
21
21
------------------------------------------------------------
22
22
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).
24
24
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).
26
26
27
27
.. important ::
28
28
All API changes after 3.0.0 are documented in `API_changes.rst <https://github.com/pymodbus-dev/pymodbus/blob/dev/API_changes.rst >`_
Original file line number Diff line number Diff line change 12
12
from pymodbus .logging import pymodbus_apply_logging_config
13
13
14
14
15
- __version__ = "3.4.0dev "
15
+ __version__ = "3.3.2 "
16
16
__version_full__ = f"[pymodbus, version { __version__ } ]"
You can’t perform that action at this time.
0 commit comments