Skip to content

Commit 1c7dd05

Browse files
authored
Prepare v3.5.2. (#1774)
1 parent 17bac6b commit 1c7dd05

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

API_changes.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ PyModbus - API changes.
66
Version 3.6.0 (future)
77
-------------
88

9+
-------------
10+
Version 3.5.2
11+
-------------
12+
No changes.
913

1014
-------------
1115
Version 3.5.1

CHANGELOG.rst

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

4+
version 3.5.2
5+
----------------------------------------------------------
6+
- server tracer example. (#1773)
7+
- sync connect missing. (#1772)
8+
- simulator future problem. (#1771)
9+
410
version 3.5.1
511
----------------------------------------------------------
612
- Always close socket on error (reset_sock). (#1767)

MAKE_RELEASE.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ Making a release.
88
------------------------------------------------------------
99
Prepare/make release on dev.
1010
------------------------------------------------------------
11-
* Make pull request "prepare v3.4.x", with the following:
11+
* Make pull request "prepare v3.5.x", with the following:
1212
* Update pymodbus/__init__.py with version number (__version__ X.Y.Zpre)
1313
* Update README.rst "Supported versions"
14+
* Control / Update API_changes.rst
1415
* Update CHANGELOG.rst
15-
* Add commits from last release, but kselectively !
16+
* Add commits from last release, but selectively !
1617
git log --oneline v3.5.1..HEAD > commit.log
17-
git log --pretty="%an" v3.5.1..HEAD | sort -uf >> AUTHORS
18+
git log --pretty="%an" v3.0.0..HEAD | sort -uf >> AUTHORS
1819
update AUTHORS
1920
* Commit, push and merge.
2021
* Checkout master locally

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Supported versions
1919

2020
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).
2121

22-
Version `3.5.1 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.5.1>`_ is the current release (Tested with Python >= 3.8).
22+
Version `3.5.2 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.5.2>`_ is the current release (Tested with Python >= 3.8).
2323

2424
.. important::
2525
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.6.0dev"
15+
__version__ = "3.5.2"
1616
__version_full__ = f"[pymodbus, version {__version__}]"

0 commit comments

Comments
 (0)