From 116bcbed53c13501f33701cb53c2ae9d840e9d06 Mon Sep 17 00:00:00 2001 From: starbased Date: Thu, 20 Nov 2025 18:17:32 -0800 Subject: [PATCH] fix(build): replace invalid version string with valid semver Changed version from "mr.batman" to "0.1.0" to fix uv tool installation. The previous version string caused TOML parse errors as it didn't start with a number. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9132d54..82a67b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "voxd" -version = "mr.batman" # bump manually on releases +version = "0.1.0" description = "Voice-typing helper powered by whisper.cpp" authors = [{ name = "Jakov", email = "jakov.iv@proton.me" }] requires-python = ">=3.9"