Skip to content
Snippets Groups Projects
.bumpversion.toml 778 B
Newer Older
# Config for bump-my-version
# Docs: https://callowayproject.github.io/bump-my-version/
[tool.bumpversion]
current_version = "2.8.2.1rc1"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)\\.(?P<smallpatch>\\d+)(rc(?P<rc>\\d+))?"
serialize = [
    "{major}.{minor}.{patch}.{smallpatch}rc{rc}",
    "{major}.{minor}.{patch}.{smallpatch}",
    "{major}.{minor}.{patch}"
]

#[[tool.bumpversion.files]]
#glob = "**/pyproject.toml"
#search = "version = \"{current_version}\""

[[tool.bumpversion.files]]
glob = "apps/cli/utilities/*/*/__init__.py"

[[tool.bumpversion.files]]
glob = "apps/cli/executables/pexable/*/*/__init__.py"

[[tool.bumpversion.files]]
glob = "services/*/*/__init__.py"

[[tool.bumpversion.files]]
filename = "shared/workspaces/workspaces/__init__.py"