diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 218393f..4cff5b9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.1" + ".": "0.4.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e6a8fdb..00feec6 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.4.2](https://github.com/us/mocker/compare/v0.4.1...v0.4.2) (2026-06-21) + + +### Bug Fixes + +* **build:** resolve -f Dockerfile path with Docker parity ([5880740](https://github.com/us/mocker/commit/58807407cb55bac27ba052e499a3b381b611ff02)) +* **compose:** resolve build.dockerfile relative to context ([cc4241a](https://github.com/us/mocker/commit/cc4241af6f99aeadf9f7896116bb54a81058c8bb)) + ## [0.4.1](https://github.com/us/mocker/compare/v0.4.0...v0.4.1) (2026-06-19) diff --git a/Sources/Mocker/Commands/Version.swift b/Sources/Mocker/Commands/Version.swift index 91c8004..6c982f5 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.4.1" + static let currentVersion = "0.4.2" // 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 6a47317..12be41d 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.4.1") + #expect(version == "0.4.2") // x-release-please-end }