diff --git a/CHANGELOG.md b/CHANGELOG.md index 6093f4b..bb82feb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial placeholder for future changes +## [0.1.3] - 2025-01-25 + +### Fixed +- 🧹 **Code quality improvements**: Comprehensive cleanup for consistent standards + - Applied black formatting to all Python files for consistent code style + - Removed trailing whitespace from all source files + - Ensured all Python files end with proper newlines + - Fixed import order violations (E402) in test files + - Added noqa comments for unavoidable import order issues + - All tests pass (17/17) with zero linting violations + ## [0.1.2] - 2025-01-25 ### Fixed diff --git a/VERSION b/VERSION index 8294c18..7693c96 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.2 \ No newline at end of file +0.1.3 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 70834a2..3c4961e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "code-conductor" -version = "0.1.2" +version = "0.1.3" description = "Agent coordination for Conductor, Warp, and Claude Code" authors = ["Ryan Mac "] readme = "README.md"