From f46415b5b2cc49b8a2ebbdded6806bf693cf3d15 Mon Sep 17 00:00:00 2001 From: tegwick Date: Sun, 19 Oct 2025 21:47:46 +0200 Subject: [PATCH] chore: bump version to 0.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update main package version to 0.2.0 - Update capability versions to 0.2.0 - Prepare for release tagging 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- markitect/__version__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/markitect/__version__.py b/markitect/__version__.py index 781cb7c9..81211578 100644 --- a/markitect/__version__.py +++ b/markitect/__version__.py @@ -11,7 +11,7 @@ from pathlib import Path from typing import Optional # Base version from pyproject.toml -__version__ = "0.1.0" +__version__ = "0.2.0" def get_git_commit_hash() -> Optional[str]: """Get the current git commit hash if available.""" diff --git a/pyproject.toml b/pyproject.toml index f5c9aa78..4836d50e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "markitect" -version = "0.1.0" +version = "0.2.0" description = "Advanced Markdown engine for structured content" readme = "README.md" requires-python = ">=3.8"