From dd7ca98f0e9e2663938822eab9678615b3e7a26e Mon Sep 17 00:00:00 2001 From: Niko11111 Date: Tue, 25 Aug 2026 16:09:24 +0200 Subject: [PATCH] fix: bump __version__ to 0.3.0 to match the released version __version__.py still reported 0.2.0 after the v0.3.0 release. The Helm chart derives its appVersion from this file on every push to main, so dev charts have been published as 0.2.0-dev since 23.12.2025, and users checking the file inside the container see the wrong version. Reported in #89. --- __version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__version__.py b/__version__.py index 690917e9..35e0816d 100644 --- a/__version__.py +++ b/__version__.py @@ -1,2 +1,2 @@ -__version__ = '0.2.0' +__version__ = '0.3.0'