From 1ed1403c430be9631b03ad16506805e5f047733c Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Thu, 29 May 2025 11:30:24 +0200 Subject: [PATCH] allow dirty bumps, manually adjust version to match remote version --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1adf1bc..bf8398b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "komconfig" -version = "0.1.6" +version = "0.2.0" 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.1.6" +current_version = "0.2.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" @@ -27,7 +27,7 @@ tag = true sign_tags = false tag_name = "v{new_version}" tag_message = "Bump version: {current_version} → {new_version}" -allow_dirty = false +allow_dirty = true commit = true message = "Bump version: {current_version} → {new_version}" moveable_tags = []