Compare commits
2 commits
65b156c47d
...
3d8eb2c80d
| Author | SHA1 | Date | |
|---|---|---|---|
| 3d8eb2c80d | |||
| 3fadb1f6c3 |
3 changed files with 9 additions and 2 deletions
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "tiramisu"
|
||||
version = "5.2.0a4"
|
||||
version = "5.2.0a5"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "an options controller tool"
|
||||
|
|
@ -18,6 +18,8 @@ classifiers = [
|
|||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Programming Language :: Python :: 3.13",
|
||||
"Programming Language :: Python :: 3.14",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Operating System :: OS Independent",
|
||||
"Natural Language :: English",
|
||||
|
|
@ -33,5 +35,9 @@ name = "cz_conventional_commits"
|
|||
tag_format = "$version"
|
||||
version_scheme = "pep440"
|
||||
version_provider = "pep621"
|
||||
version_files = [
|
||||
"tiramisu/__version__.py",
|
||||
"pyproject.toml:version"
|
||||
]
|
||||
#update_changelog_on_bump = true
|
||||
changelog_merge_prerelease = true
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@ from .error import ConfigError
|
|||
from .api import Config, MetaConfig, GroupConfig, MixConfig
|
||||
from .option import __all__ as all_options
|
||||
from .setting import owners, groups, undefined
|
||||
from .__version__ import __version__
|
||||
|
||||
|
||||
allfuncs = [
|
||||
|
|
@ -76,4 +77,3 @@ allfuncs.extend(all_options)
|
|||
del all_options
|
||||
__all__ = tuple(allfuncs)
|
||||
del allfuncs
|
||||
__version__ = "4.1.0"
|
||||
|
|
|
|||
1
tiramisu/__version__.py
Normal file
1
tiramisu/__version__.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
__version__ = "5.2.0a5"
|
||||
Loading…
Reference in a new issue