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"