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" }