From e3eb654996d403f740c9df528b438321f13d42d5 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 16 May 2026 15:10:17 +0000 Subject: [PATCH] Bump version to 0.3.2 https://claude.ai/code/session_015XtsgTMi8UtmgxEgb5Qt2c --- mdcms.py | 8 ++++---- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mdcms.py b/mdcms.py index f453595..ee7cf84 100644 --- a/mdcms.py +++ b/mdcms.py @@ -1,11 +1,11 @@ #!/usr/bin/env python3 # -# mdcms v0.3.1 — CLI companion +# mdcms v0.3.2 — CLI companion # # Copyright 2026 Kristian Benestad # Apache License, Version 2.0 — https://www.apache.org/licenses/LICENSE-2.0 -"""MD-CMS v0.3.1 — CLI tool for managing and building MD-CMS sites.""" +"""MD-CMS v0.3.2 — CLI tool for managing and building MD-CMS sites.""" import json import os @@ -20,8 +20,8 @@ import certifi import click import yaml -CLI_VERSION = "0.3.1" -CLI_RELEASE_DATE = "10 May 2026" +CLI_VERSION = "0.3.2" +CLI_RELEASE_DATE = "16 May 2026" MIN_SUPPORTED_VERSION = "0.3" MARKER_RE = re.compile(r"mdcms v(\d+\.\d+)", re.IGNORECASE) diff --git a/pyproject.toml b/pyproject.toml index 339ba9e..0f90b71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "mdcms" -version = "0.3.1" +version = "0.3.2" description = "MD-CMS — Markdown-based CMS companion CLI" readme = "README.md" license = { text = "Apache-2.0" }