File tree 3 files changed +25
-3
lines changed
3 files changed +25
-3
lines changed Original file line number Diff line number Diff line change
1
+ version 3.1.1
2
+ ----------------------------------------------------------
3
+ * add missing server.start() (#1282)
4
+ * small performance improvement on debug log (#1279)
5
+ * Fix Unix sockets parsing (#1281)
6
+ * client: Allow unix domain socket. (#1274)
7
+ * transfer timeout to protocol object. (#1275)
8
+ * Add ModbusUnixServer / StartAsyncUnixServer. (#1273)
9
+ * Added return in AsyncModbusSerialClient.connect (#1271)
10
+ * add connect() to the very first example (#1270)
11
+ * Solve docker problem. (#1268)
12
+ * Test stop of server task. (#1256)
13
+
14
+ Thanks to:
15
+
16
+ Alex
17
+ Alexandre CUER
18
+ Dries
19
+ jan iversen
20
+ peufeu2
21
+
22
+
1
23
version 3.1.0
2
24
----------------------------------------------------------
3
25
* Add xdist pr default. (#1253)
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ 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.1.0 ..HEAD > commit.log
17
- git log v3.1.0 ..HEAD | grep Author > contributors.log
16
+ git log --oneline v3.1.1 ..HEAD > commit.log
17
+ git log v3.1.1 ..HEAD | grep Author > contributors.log
18
18
* Commit, push and merge.
19
19
* Checkout master locally
20
20
* git merge dev
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Supported versions
24
24
25
25
Version `2.5.3 <https://github.com/riptideio/pymodbus/releases/tag/v2.5.3 >`_ is the last 2.x release (Supports python 2.7.x - 3.7).
26
26
27
- Version `3.1.0 <https://github.com/riptideio/pymodbus/releases/tag/v3.1.0 >`_ is the current release (Supports Python >=3.8).
27
+ Version `3.1.1 <https://github.com/riptideio/pymodbus/releases/tag/v3.1.1 >`_ is the current release (Supports Python >=3.8).
28
28
29
29
.. important ::
30
30
All API changes after 3.0.0 are documented in `API_changes.rst <https://github.com/riptideio/pymodbus/blob/dev/API_changes.rst >`_
You can’t perform that action at this time.
0 commit comments