From 1d5592e49e4a61ace79399cfbad8efebc28328ca Mon Sep 17 00:00:00 2001 From: "Adrian A. Baumann" Date: Sun, 12 Jul 2026 15:32:09 +0200 Subject: [PATCH] Bump version to 0.72 --- 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 20028d0..3e7ac46 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.71 + image: git.baumann.gr/adebaumann/m1730-generator:0.72 imagePullPolicy: Always ports: - containerPort: 5000 diff --git a/web/app.py b/web/app.py index c8ad714..b25585b 100644 --- a/web/app.py +++ b/web/app.py @@ -7,7 +7,7 @@ from fontTools.pens.svgPathPen import SVGPathPen app = Flask(__name__) -VERSION = "0.71" +VERSION = "0.72" _LOGO_PATH = pathlib.Path(__file__).parent / 'static' / 'logo.png' _LOGO_B64 = base64.b64encode(_LOGO_PATH.read_bytes()).decode()