Skip to content

Commit 5dd5576

Browse files
authored
Prepare v3.2.0. (#1416)
1 parent 35507c6 commit 5dd5576

File tree

4 files changed

+57
-4
lines changed

4 files changed

+57
-4
lines changed

CHANGELOG.rst

+53
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
version 3.2.0
2+
----------------------------------------------------------
3+
* Add value <-> registers converter helpers. (#1413)
4+
* Add pre-commit config (#1406)
5+
* Make baud rate configurable for examples (#1410)
6+
* Clean __init_ and update log module. (#1411)
7+
* Simulator add calls functionality. (#1390)
8+
* Add note about not being thread safe. (#1404)
9+
* Update docker-publish.yml
10+
* Forward retry_on_empty and retries by calling transaction (#1401)
11+
* serial sync recv interval (#1389)
12+
* Add tests for writing multiple writes with a single value (#1402)
13+
* Enable mypy in CI (#1388)
14+
* Limit use of Singleton. (#1397)
15+
* Cleanup interfaces (#1396)
16+
* Add request names. (#1391)
17+
* Simulator, register look and feel. (#1387)
18+
* Fix enum for REPL server (#1384)
19+
* Remove unneeded attribute (#1383)
20+
* Fix mypy errors in reactive server (#1381)
21+
* remove nosec (#1379)
22+
* Fix type hints for http_server (#1369)
23+
* Merge pull request #1380 from pymodbus-dev/requirements
24+
* remove second client instance in async mode. (#1367)
25+
* Pin setuptools to prevent breakage with Version including "X" (#1373)
26+
* Lint and type hints for REPL (#1364)
27+
* Clean mixin execute (#1366)
28+
* Remove unused setup_commands.py. (#1362)
29+
* Run black on top-level files and /doc (#1361)
30+
* repl config path (#1359)
31+
* Fix NoReponse -> NoResponse (#1358)
32+
* Make whole main async. (#1355)
33+
* Fix more typing issues (#1351)
34+
* Test sync task (#1341)
35+
* Fixed text in ModbusClientMixin's writes (#1352)
36+
* lint /doc (#1345)
37+
* Remove unused linters (#1344)
38+
* Allow log level as string or integer. (#1343)
39+
* Sync serial, clean recv. (#1340)
40+
* Test server task, async completed (#1318)
41+
* main() should be sync (#1339)
42+
* Bug: Fixed caused by passing wrong arg (#1336)
43+
44+
Thanks to:
45+
AKJ7,
46+
Alex,
47+
Alex Ruddick,
48+
banana-sun,
49+
cgernert,
50+
Jakob Ruhe,
51+
James Braza,
52+
jan Iversen
53+
154
version 3.1.3
255
----------------------------------------------------------
356
* Solve log problem in payload.

MAKE_RELEASE.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ 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.1.3..HEAD > commit.log
17-
git log v3.1.3..HEAD | grep Author > contributors.log
16+
git log --oneline v3.2.0..HEAD > commit.log
17+
git log v3.2.0..HEAD | grep Author > contributors.log
1818
* Commit, push and merge.
1919
* Checkout master locally
2020
* git merge dev

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Supported versions
2222

2323
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.x - 3.7).
2424

25-
Version `3.1.3 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.1.3>`_ is the current release (Supports Python >=3.8).
25+
Version `3.2.0 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.2.0>`_ is the current release (Supports 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/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ def __str__(self) -> str:
3737
return f"[{self.package}, version {self.short()}]"
3838

3939

40-
version = Version("pymodbus", 3, 1, "x", "")
40+
version = Version("pymodbus", 3, 2, 0, "")

0 commit comments

Comments
 (0)