From c7fde737f2ab302a7ec675380d109244f0418aca Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 7 Jun 2026 18:03:09 +0000 Subject: [PATCH] chore: bump version to 0.6.0 (7 June 2026) https://claude.ai/code/session_01Ai8xRvmrzdhuTKiRQ2fnn9 --- mdcms.py | 8 ++++---- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mdcms.py b/mdcms.py index 31832e4..2023519 100644 --- a/mdcms.py +++ b/mdcms.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# mdcms v0.4.0 — CLI companion +# mdcms v0.6.0 — CLI companion # # Copyright 2026 Kristian Benestad # @@ -16,7 +16,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -"""MD-CMS v0.4.0 — CLI tool for managing and building MD-CMS sites.""" +"""MD-CMS v0.6.0 — CLI tool for managing and building MD-CMS sites.""" import json import os @@ -32,8 +32,8 @@ import certifi import click import yaml -CLI_VERSION = "0.4.0" -CLI_RELEASE_DATE = "17 May 2026" +CLI_VERSION = "0.6.0" +CLI_RELEASE_DATE = "7 June 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 1b33a65..f900124 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "mdcms" -version = "0.4.0" +version = "0.6.0" description = "MD-CMS — Markdown-based CMS companion CLI" readme = "README.md" license = { text = "Apache-2.0" }