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 3fec299 commit e479456Copy full SHA for e479456
cloudbot/__init__.py
@@ -4,8 +4,8 @@
4
from pathlib import Path
5
from typing import Any, Dict, Optional
6
7
-version = (1, 4, 0)
8
-__version__ = ".".join(str(i) for i in version)
+__version__ = "1.4.0"
+version = tuple(__version__.split("."))
9
10
__all__ = (
11
"clients",
pyproject.toml
@@ -124,6 +124,6 @@ disallow_untyped_defs = true
124
name = "cz_conventional_commits"
125
tag_format = "v$version"
126
version_scheme = "semver"
127
-version_provider = "scm"
128
update_changelog_on_bump = true
129
-major_version_zero = true
+version_files = ["cloudbot/__init__.py:__version__"]
+version = "1.4.0"
0 commit comments