fix: add version
This commit is contained in:
parent
e4b045ab75
commit
4f083b47b5
3 changed files with 6 additions and 0 deletions
|
|
@ -39,5 +39,9 @@ name = "cz_conventional_commits"
|
|||
tag_format = "$version"
|
||||
version_scheme = "pep440"
|
||||
version_provider = "pep621"
|
||||
version_files = [
|
||||
"src/rougail/output_formatter/__version__.py",
|
||||
"pyproject.toml:version"
|
||||
]
|
||||
update_changelog_on_bump = true
|
||||
changelog_merge_prerelease = true
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ from rougail.object_model import Variable, Family, Calculation, JinjaCalculation
|
|||
from rougail.utils import normalize_family
|
||||
|
||||
from .upgrade import RougailUpgrade
|
||||
from .__version__ import __version__
|
||||
|
||||
|
||||
def _(text):
|
||||
|
|
|
|||
1
src/rougail/output_formatter/__version__.py
Normal file
1
src/rougail/output_formatter/__version__.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
__version__ = "0.1.0a8"
|
||||
Loading…
Reference in a new issue