diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7e08ec6..ee2bfff 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.2" + ".": "0.9.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5516658..016a9a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * **image inspect:** `mocker image inspect` and `mocker inspect --type=image` now return Docker-compatible `ImageInspect` JSON arrays with PascalCase keys instead of the previous lowercase `ImageInfo` object shape. * **MockerKit:** `ImageManager.inspect(_:platform:)` returns `ImageInspect` instead of `ImageInfo`. +## [0.9.3](https://github.com/us/mocker/compare/v0.9.2...v0.9.3) (2026-08-24) + + +### Bug Fixes + +* **cli:** keep --entrypoint a single token, matching Docker ([c950d9f](https://github.com/us/mocker/commit/c950d9f41712b5a5a7ee8d58db294489f5d75fe3)) +* **compose:** support the entrypoint field in service definitions ([3f50557](https://github.com/us/mocker/commit/3f5055717721df50ba99242262aea57aa30dbe16)) + ## [0.9.2](https://github.com/us/mocker/compare/v0.9.1...v0.9.2) (2026-08-18) diff --git a/Sources/Mocker/Commands/Version.swift b/Sources/Mocker/Commands/Version.swift index b32be02..3a94745 100644 --- a/Sources/Mocker/Commands/Version.swift +++ b/Sources/Mocker/Commands/Version.swift @@ -7,7 +7,7 @@ struct Version: AsyncParsableCommand { ) // x-release-please-start-version - static let currentVersion = "0.9.2" + static let currentVersion = "0.9.3" // x-release-please-end @Option(name: .shortAndLong, help: "Format output using a custom template") diff --git a/Tests/MockerTests/CLITests.swift b/Tests/MockerTests/CLITests.swift index bbe2cfb..a1222eb 100644 --- a/Tests/MockerTests/CLITests.swift +++ b/Tests/MockerTests/CLITests.swift @@ -11,7 +11,7 @@ struct CLITests { let version = Version.currentVersion #expect(!version.isEmpty) // x-release-please-start-version - #expect(version == "0.9.2") + #expect(version == "0.9.3") // x-release-please-end }