Compare commits

...

2 Commits

Author SHA1 Message Date
417c4c8bdc Bump version: 0.1.0 → 0.1.1 2024-03-07 17:13:08 +02:00
be2dd80aad Fix version bumping
URL Update
2024-03-07 17:12:49 +02:00
2 changed files with 9 additions and 11 deletions

View File

@ -32,7 +32,7 @@ dependencies = [
[project.urls]
"Homepage" = "https://pypi.org/package/sdlv_api_client"
"Homepage" = "https://pypi.org/project/sdlv-api-client/"
"Bug Reports" = "https://git.72.lv/eriks/api_client/issues"
"Funding" = "https://donate.pypi.org"
"Say Thanks!" = "http://saythanks.io/to/example"
@ -59,20 +59,18 @@ version = { attr = "sdlv_api_client.__version__" }
[tool.bumpversion]
current_version = "0.1.1"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
commit = true
tag = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = true
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
message = "Bump version: {current_version} → {new_version}"
commit_args = ""
[[tool.bumpversion.files]]
filename = "src/sdlv_api_client/__init__.py"
[tool.black]

View File

@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.1.1"