From c42a46f536c83b608443a4887d23dfdbe09f11ee Mon Sep 17 00:00:00 2001 From: "Adrian A. Baumann" Date: Sun, 12 Jul 2026 15:07:59 +0200 Subject: [PATCH] Bump version to 0.71 --- k8s/deployment.yaml | 2 +- web/app.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/k8s/deployment.yaml b/k8s/deployment.yaml index 22f21d2..20028d0 100644 --- a/k8s/deployment.yaml +++ b/k8s/deployment.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: m1730-generator - image: git.baumann.gr/adebaumann/m1730-generator:0.7 + image: git.baumann.gr/adebaumann/m1730-generator:0.71 imagePullPolicy: Always ports: - containerPort: 5000 diff --git a/web/app.py b/web/app.py index 6f1c8c6..c8ad714 100644 --- a/web/app.py +++ b/web/app.py @@ -7,7 +7,7 @@ from fontTools.pens.svgPathPen import SVGPathPen app = Flask(__name__) -VERSION = "0.7" +VERSION = "0.71" _LOGO_PATH = pathlib.Path(__file__).parent / 'static' / 'logo.png' _LOGO_B64 = base64.b64encode(_LOGO_PATH.read_bytes()).decode()