File tree Expand file tree Collapse file tree 6 files changed +13
-6
lines changed Expand file tree Collapse file tree 6 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ helps make pymodbus a better product.
7
7
8
8
:ref: `Authors `: contains a complete list of volunteers have contributed to each major version.
9
9
10
+ Version 3.6.2
11
+ -------------
12
+ * Set documentation to v3.6.2.
13
+
10
14
Version 3.6.1
11
15
-------------
12
16
* Solve pypi upload error.
Original file line number Diff line number Diff line change @@ -8,20 +8,23 @@ Making a release.
8
8
------------------------------------------------------------
9
9
Prepare/make release on dev.
10
10
------------------------------------------------------------
11
- * Make pull request "prepare v3.5 .x", with the following:
11
+ * Make pull request "prepare v3.6 .x", with the following:
12
12
* Update pymodbus/__init__.py with version number (__version__ X.Y.Zpre)
13
13
* Update README.rst "Supported versions"
14
14
* Control / Update API_changes.rst
15
15
* Update CHANGELOG.rst
16
16
* Add commits from last release, but selectively !
17
- git log --oneline v3.5.3 ..HEAD > commit.log
18
- git log --pretty="%an" v3.0.0 ..HEAD | sort -uf > authors.log
17
+ git log --oneline v3.6.1 ..HEAD > commit.log
18
+ git log --pretty="%an" v3.6.1 ..HEAD | sort -uf > authors.log
19
19
update AUTHORS
20
20
cd doc; ./build_html
21
+ * rm -rf build/* dist/*
22
+ * python3 -m build
21
23
* twine check dist/*
22
24
* Commit, push and merge.
25
+ * Wait for CI to complete
26
+ * git pull
23
27
* Checkout master locally
24
- * git pull dev
25
28
* git merge dev
26
29
* git push
27
30
* git branch -D master
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ PyModbus - A Python Modbus Stack
11
11
12
12
Pymodbus is a full Modbus protocol implementation offering client/server with synchronous/asynchronous API a well as simulators.
13
13
14
- Current release is `3.6.0 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.6.0 >`_.
14
+ Current release is `3.6.2 <https://github.com/pymodbus-dev/pymodbus/releases/tag/v3.6.2 >`_.
15
15
16
16
Bleeding edge (not released) is `dev <https://github.com/pymodbus-dev/pymodbus/tree/dev >`_.
17
17
Original file line number Diff line number Diff line change 18
18
from pymodbus .pdu import ExceptionResponse
19
19
20
20
21
- __version__ = "3.6.1 "
21
+ __version__ = "3.6.2 "
22
22
__version_full__ = f"[pymodbus, version { __version__ } ]"
You can’t perform that action at this time.
0 commit comments