diff --git a/CHANGELOG.md b/CHANGELOG.md index 79690a3..5dfde75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project follows [Semantic Versioning](https://semver.org/). ## [Unreleased] +## [1.4.0] - 2026-08-04 + ### Added - Make the command optional in `wco exec`. `wco exec 2.1` — or `wco exec php` — @@ -159,8 +161,9 @@ and this project follows [Semantic Versioning](https://semver.org/). - Configurable Compose files, environment templates, and worktree validation. - Port inspection and explicit reallocation commands. -[Unreleased]: https://github.com/rdlugs/worktree-compose/compare/v1.3.0...HEAD -[1.2.1]: https://github.com/rdlugs/worktree-compose/compare/v1.2.1...v1.3.0 +[Unreleased]: https://github.com/rdlugs/worktree-compose/compare/v1.4.0...HEAD +[1.4.0]: https://github.com/rdlugs/worktree-compose/compare/v1.3.0...v1.4.0 +[1.3.0]: https://github.com/rdlugs/worktree-compose/compare/v1.2.1...v1.3.0 [1.2.1]: https://github.com/rdlugs/worktree-compose/compare/v1.2.0...v1.2.1 [1.2.0]: https://github.com/rdlugs/worktree-compose/compare/v1.1.1...v1.2.0 [1.1.1]: https://github.com/rdlugs/worktree-compose/compare/v1.1.0...v1.1.1 diff --git a/pyproject.toml b/pyproject.toml index 071c9eb..09dd53a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "wco" -version = "1.3.0" +version = "1.4.0" description = "Run a central Docker Compose stack against the current Git worktree" readme = "README.md" requires-python = ">=3.11" diff --git a/src/wco/__init__.py b/src/wco/__init__.py index dc7b8b1..0ce5212 100644 --- a/src/wco/__init__.py +++ b/src/wco/__init__.py @@ -1,3 +1,3 @@ """wco package.""" -__version__ = "1.3.0" +__version__ = "1.4.0" diff --git a/uv.lock b/uv.lock index 2e6e354..21908a5 100644 --- a/uv.lock +++ b/uv.lock @@ -56,7 +56,7 @@ wheels = [ [[package]] name = "wco" -version = "1.3.0" +version = "1.4.0" source = { editable = "." } dependencies = [ { name = "filelock" },