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' }} 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

@@ -1,6 +1,6 @@
[project] [project]
name = "komconfig" 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" description = "A small library providing a config class that provides settings data for the KomSuite"
readme = "README.md" readme = "README.md"
authors = [{ name = "WorldTeacher", email = "coding_contact@pm.me" }] authors = [{ name = "WorldTeacher", email = "coding_contact@pm.me" }]
@@ -15,7 +15,7 @@ build-backend = "hatchling.build"
test = ["pytest>=8.3.4"] test = ["pytest>=8.3.4"]
[tool.bumpversion] [tool.bumpversion]
current_version = "0.2.1" current_version = "0.2.2"
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}"