Skip to content

Commit f0ba429

Browse files
committed
Merge branch 'dev'
2 parents dd7d7e3 + f6d9210 commit f0ba429

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ helps make pymodbus a better product.
77

88
:ref:`Authors`: contains a complete list of volunteers have contributed to each major version.
99

10+
Version 3.6.1
11+
-------------
12+
* Solve pypi upload error.
13+
1014
Version 3.6.0
1115
-------------
1216
* doc: Fix a code mismatch in client.rst

MAKE_RELEASE.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Prepare/make release on dev.
1818
git log --pretty="%an" v3.0.0..HEAD | sort -uf > authors.log
1919
update AUTHORS
2020
cd doc; ./build_html
21+
* twine check dist/*
2122
* Commit, push and merge.
2223
* Checkout master locally
2324
* git pull dev
@@ -33,8 +34,8 @@ Prepare/make release on dev.
3334
* on local repo
3435
* git pull, check release tag is pulled
3536
* git checkout v3.0.0dev0
37+
* rm -rf build/* dist/*
3638
* python3 -m build
37-
* twine check dist/*
3839
* twine upload dist/* (upload to pypi)
3940
* Double check Read me docs are updated
4041
* trigger build https://readthedocs.org/projects/pymodbus/builds/

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Pymodbus consist of 5 parts:
3434

3535
Common features
3636
^^^^^^^^^^^^^^^
37-
* Full :download:`modbus standard protocol <_static/Modbus_Application_Protocol_V1_1b3.pdf>` implementation
37+
* Full `modbus standard protocol <_static/Modbus_Application_Protocol_V1_1b3.pdf>`_ implementation
3838
* Support for custom function codes
3939
* support serial (rs-485), tcp, tls and udp communication
4040
* support all standard frames: socket, rtu, rtu-over-tcp, tcp and ascii

pymodbus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
from pymodbus.pdu import ExceptionResponse
1919

2020

21-
__version__ = "3.6.0"
21+
__version__ = "3.6.1"
2222
__version_full__ = f"[pymodbus, version {__version__}]"

0 commit comments

Comments
 (0)