We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 775ee17 commit 3a6e3f3Copy full SHA for 3a6e3f3
README.md
@@ -1,6 +1,6 @@
1
# beku
2
3
-Version: 0.0.7
+Version: 0.0.8-dev
4
5
## Installation
6
@@ -26,7 +26,7 @@ Update the version in:
26
27
* `pyproject.toml`
28
* `version.py`
29
-* `README.md`
+* `README.md` : version and pip install command.
30
31
Update the CHANGELOG.
32
Commit and tag.
pyproject.toml
[project]
name = "beku-stackabletech"
-version = "0.0.7"
+version = "0.0.8-dev"
authors = [
{ name = "Razvan Mihai", email = "razvan.mihai@stackable.tech" }
]
src/beku/version.py
@@ -1,3 +1,3 @@
"""Package version."""
-__version_info__ = (0, 0, '7')
+__version_info__ = (0, 0, '8-dev')
__version__ = ".".join(map(str, __version_info__))
0 commit comments