Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions MAKE_RELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Making a release.
------------------------------------------------------------
Prepare/make release on dev.
------------------------------------------------------------
* Make pull request "prepare v3.0.x", with the following:
* Update pymodbus/version.py with version number (last line)
* Make pull request "prepare v3.3.x", with the following:
* Update pymodbus/__init__.py with version number (__version__ X.Y.Zpre)
* Update README.rst "Supported versions"
* Update CHANGELOG.rst
* Add commits from last release, but selectively !
git log --oneline v3.2.0..HEAD > commit.log
git log v3.2.0..HEAD | grep Author > contributors.log
git log --oneline v3.2.2..HEAD > commit.log
git log v3.2.2..HEAD | grep Author > contributors.log
* Commit, push and merge.
* Checkout master locally
* git merge dev
Expand Down
5 changes: 2 additions & 3 deletions pymodbus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
]

from pymodbus.logging import pymodbus_apply_logging_config
from pymodbus.version import version


__version__ = version.short()
__version_full__ = str(version)
__version__ = "3.3.0alpha"
__version_full__ = f"[pymodbus, version {__version__}]"
40 changes: 0 additions & 40 deletions pymodbus/version.py

This file was deleted.

19 changes: 0 additions & 19 deletions test/test_version.py

This file was deleted.