diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 49f729c5..8c468b90 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.3.2" + ".": "3.3.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bb5d4a5..ab635c86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ Future CHANGELOG notes will be in GitHub release notes * Docs: document the last four options and split contributor docs ([#463](https://github.com/test-kitchen/kitchen-docker/pull/463)) ([4818bce](https://github.com/test-kitchen/kitchen-docker/commit/4818bce)) +## [3.3.3](https://github.com/test-kitchen/kitchen-docker/compare/v3.3.2...v3.3.3) (2026-08-23) + + +### Bug Fixes + +* detect containers that exist but have stopped ([#476](https://github.com/test-kitchen/kitchen-docker/issues/476)) ([c6c7038](https://github.com/test-kitchen/kitchen-docker/commit/c6c70382f9e7be4a4c27f5f225f72465a3b392a6)) + ## [3.3.2](https://github.com/test-kitchen/kitchen-docker/compare/v3.3.1...v3.3.2) (2026-08-23) diff --git a/lib/kitchen/docker/docker_version.rb b/lib/kitchen/docker/docker_version.rb index 8b0506e2..2bdb1930 100644 --- a/lib/kitchen/docker/docker_version.rb +++ b/lib/kitchen/docker/docker_version.rb @@ -18,6 +18,6 @@ module Kitchen # Everything belonging to the kitchen-docker plugin. module Docker # The version of the kitchen-docker gem. - DOCKER_VERSION = "3.3.2".freeze + DOCKER_VERSION = "3.3.3".freeze end end