3 Commits

2 changed files with 3 additions and 3 deletions

View File

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

View File

@@ -1,6 +1,6 @@
[project]
name = "komconfig"
version = "0.2.1"
version = "0.2.2"
description = "A small library providing a config class that provides settings data for the KomSuite"
readme = "README.md"
authors = [{ name = "WorldTeacher", email = "coding_contact@pm.me" }]
@@ -15,7 +15,7 @@ build-backend = "hatchling.build"
test = ["pytest>=8.3.4"]
[tool.bumpversion]
current_version = "0.2.1"
current_version = "0.2.2"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"