Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.3.2"
".": "0.3.3"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion Sources/Mocker/Commands/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion Tests/MockerTests/CLITests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down