Skip to content

Commit c976214

Browse files
committed
Prepare v3.1.3.
1 parent cc4c06b commit c976214

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
version 3.1.3
2+
----------------------------------------------------------
3+
* Fix register type check for size bigger than 3 registers (6 bytes) (#1323)
4+
* Re-add SQL tests. (#1329)
5+
* Central logging. (#1324)
6+
* Skip sqlAlchemy test. (#1325)
7+
* Solve 1319 (#1320)
8+
9+
Thanks to:
10+
duc996,
11+
jan iversen
12+
113
version 3.1.2
214
----------------------------------------------------------
315
* Update README.rst

MAKE_RELEASE.rst

Lines changed: 2 additions & 2 deletions
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.1..HEAD > commit.log
17-
git log v3.1.1..HEAD | grep Author > contributors.log
16+
git log --oneline v3.1.3..HEAD > commit.log
17+
git log v3.1.3..HEAD | grep Author > contributors.log
1818
* Commit, push and merge.
1919
* Checkout master locally
2020
* git merge dev

README.rst

Lines changed: 1 addition & 1 deletion
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.2 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.1.2>`_ is the current release (Supports Python >=3.8).
25+
Version `3.1.3 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.1.3>`_ 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __str__(self):
3737
return f"[{self.package}, version {self.short()}]"
3838

3939

40-
version = Version("pymodbus", 3, 1, "x", "")
40+
version = Version("pymodbus", 3, 1, 3, "")
4141
version.__name__ = ( # fix epydoc error # pylint: disable=attribute-defined-outside-init
4242
"pymodbus"
4343
)

0 commit comments

Comments
 (0)