diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0477999..6969ddf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.2" + ".": "0.3.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 42bd844..c6422bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to Mocker are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.3](https://github.com/us/mocker/compare/v0.3.2...v0.3.3) (2026-06-12) + + +### Bug Fixes + +* **compose:** forward published ports ([#19](https://github.com/us/mocker/issues/19)) and accept -f before subcommand ([#21](https://github.com/us/mocker/issues/21)) ([#22](https://github.com/us/mocker/issues/22)) ([5255e50](https://github.com/us/mocker/commit/5255e503044246c80d6076f008f2dc4ac6d0e323)) + ## [0.3.2](https://github.com/us/mocker/compare/v0.3.1...v0.3.2) (2026-06-11) diff --git a/Sources/Mocker/Commands/Version.swift b/Sources/Mocker/Commands/Version.swift index e083c00..005b5d1 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.3.2" + static let currentVersion = "0.3.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 045efd7..0868b39 100644 --- a/Tests/MockerTests/CLITests.swift +++ b/Tests/MockerTests/CLITests.swift @@ -9,7 +9,7 @@ struct CLITests { let version = Version.currentVersion #expect(!version.isEmpty) // x-release-please-start-version - #expect(version == "0.3.2") + #expect(version == "0.3.3") // x-release-please-end }