From 75bbcc5d76ba1f7c9f3707642c6eb2d6bea3c253 Mon Sep 17 00:00:00 2001 From: pax Date: Sat, 11 Apr 2026 15:59:57 -0500 Subject: [PATCH] strip 'v' prefix from version strings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pyproject.toml and installer.iss both used 'v0.2.5' — not PEP 440 compliant, so hatchling silently normalized it to '0.2.5' in wheel builds. Align the source strings with what actually gets shipped. --- installer.iss | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/installer.iss b/installer.iss index dc143bb..b562ed2 100644 --- a/installer.iss +++ b/installer.iss @@ -2,7 +2,7 @@ [Setup] AppName=booru-viewer -AppVersion=v0.2.5 +AppVersion=0.2.5 AppPublisher=pax AppPublisherURL=https://git.pax.moe/pax/booru-viewer DefaultDirName={localappdata}\booru-viewer diff --git a/pyproject.toml b/pyproject.toml index 0381254..d6d0825 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "booru-viewer" -version = "v0.2.5" +version = "0.2.5" description = "Local booru image browser with Qt6 GUI" requires-python = ">=3.11" dependencies = [