Skip to content

Commit cfc95c4

Browse files
authored
prepare dev. (#1571)
1 parent 684083f commit cfc95c4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

MAKE_RELEASE.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ Making a release.
88
------------------------------------------------------------
99
Prepare/make release on dev.
1010
------------------------------------------------------------
11-
* Make pull request "prepare v3.3.x", with the following:
11+
* Make pull request "prepare v3.4.x", with the following:
1212
* Update pymodbus/__init__.py with version number (__version__ X.Y.Zpre)
1313
* Update README.rst "Supported versions"
1414
* Update CHANGELOG.rst
1515
* Add commits from last release, but selectively !
16-
git log --oneline v3.2.2..HEAD > commit.log
17-
git log v3.2.2..HEAD | grep Author > contributors.log
16+
git log --oneline v3.3.0..HEAD > commit.log
17+
git log v3.3.0..HEAD | grep Author > contributors.log
1818
* Commit, push and merge.
1919
* Checkout master locally
2020
* git merge dev
2121
* git push
2222
* wait for CI to complete on all branches
2323
* On github "prepare release"
24-
* Create tag e.g. v3.0.1dev0
25-
* Title "pymodbus v3.0.1dev0"
24+
* Create tag e.g. v3.4.0dev0
25+
* Title "pymodbus v3.4.0dev0"
2626
* do NOT generate release notes, but copy from CHANGELOG.rst
2727
* make release (remember to mark pre-release if so)
2828
* on local repo
@@ -40,4 +40,4 @@ Prepare release on dev for new commits.
4040
------------------------------------------------------------
4141
* git branch -D master
4242
* Make pull request "prepare dev", with the following:
43-
* Update pymodbus/version.py with version number (last line)
43+
* Update pymodbus/__init__.py with version number (__version__ X.Y.Zpre)

pymodbus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
from pymodbus.logging import pymodbus_apply_logging_config
1313

1414

15-
__version__ = "3.3.0"
15+
__version__ = "3.4.0alpha"
1616
__version_full__ = f"[pymodbus, version {__version__}]"

0 commit comments

Comments
 (0)