From 1877d6d4629b91770198abdb39a7fb1740e7ad99 Mon Sep 17 00:00:00 2001 From: tegwick Date: Sat, 25 Oct 2025 03:10:13 +0200 Subject: [PATCH] release: prepare v0.3.0 - Architectural Improvements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Kaizen-agentic framework integration as capability submodule - Test reorganization by capability with better modularity - Comprehensive capability inclusion management system - Directory reorganization with logical separation - Todofile system implementation replacing NEXT.md - Historical file organization for cleaner structure 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- CHANGELOG.md | 5 +++++ markitect/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e26fdf83..29751593 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] - 2025-10-25 + ### Added - **Kaizen-Agentic Framework Integration** as external capability submodule - **Test Reorganization by Capability** with separated test targets for better modularity - **Comprehensive Capability Inclusion Management System** with automated discovery tools +- **Todofile System Implementation** - Modern task management replacing NEXT.md +- **Historical File Organization** - Legacy files moved to history directory for better project structure ### Changed - **Capability Directory Reorganization** - moved all external dependencies to `capabilities/` directory @@ -24,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - **Test Performance** - core tests now exclude capability tests for faster execution - **Development Workflow** - clear separation between internal and external capabilities - **Documentation Ecosystem** - complete capability documentation with CAPABILITIES.md and CAPABILITY_REGISTRY.md +- **Code Organization** - Archive of legacy files to maintain clean working directory ## [0.2.0] - 2025-10-20 diff --git a/markitect/__version__.py b/markitect/__version__.py index 81211578..e65c099a 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.2.0" +__version__ = "0.3.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 4836d50e..cf98a4f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "markitect" -version = "0.2.0" +version = "0.3.0" description = "Advanced Markdown engine for structured content" readme = "README.md" requires-python = ">=3.8"