4 Commits

Author SHA1 Message Date
Gitea CI
9c130ac1d0 Bump version: 0.1.29 → 1.0.0 2025-05-29 09:44:21 +00:00
Gitea CI
721e817b20 Bump version: 0.1.28 → 0.1.29 2025-05-29 09:43:22 +00:00
4a51f0c8e1 add v to release tag 2025-05-29 11:42:55 +02:00
bacdf95171 Add success message after script execution 2025-05-29 11:42:16 +02:00
3 changed files with 4 additions and 3 deletions

View File

@@ -78,7 +78,7 @@ jobs:
if: ${{ github.event.inputs.github_release == 'true' }} if: ${{ github.event.inputs.github_release == 'true' }}
uses: softprops/action-gh-release@master uses: softprops/action-gh-release@master
with: with:
tag_name: ${{ env.VERSION }} tag_name: v${{ env.VERSION }}
release_name: Release ${{ env.VERSION }} release_name: Release ${{ env.VERSION }}
body: ${{steps.build_changelog.outputs.changelog}} body: ${{steps.build_changelog.outputs.changelog}}
draft: false draft: false

View File

@@ -10,3 +10,4 @@ def get_version():
if __name__ == "__main__": if __name__ == "__main__":
main() main()
print("This script has been executed successfully.")

View File

@@ -1,6 +1,6 @@
[project] [project]
name = "workflowbumptester" name = "workflowbumptester"
version = "0.1.28" version = "1.0.0"
description = "Add your description here" description = "Add your description here"
readme = "README.md" readme = "README.md"
requires-python = ">=3.13" requires-python = ">=3.13"
@@ -10,7 +10,7 @@ dependencies = [
] ]
[tool.bumpversion] [tool.bumpversion]
current_version = "0.1.28" current_version = "1.0.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)" parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"] serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}" search = "{current_version}"