Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to 0.12.0 #134

Merged
merged 1 commit into from
Apr 15, 2024
Merged
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 Documentation/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Add xcdiff to your `Package.swift` file:
```swift
dependencies: [
// ...
.package(url: "https://github.com/bloomberg/xcdiff", .upToNextMinor(from: "0.11.0")),
.package(url: "https://github.com/bloomberg/xcdiff", .upToNextMinor(from: "0.12.0")),
]
```

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_MAJOR = 0
VERSION_MINOR = 11
VERSION_MINOR = 12
VERSION_PATCH = 0
VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)
GIT_SHORT_HASH = $(shell git rev-parse --short HEAD)
Expand Down
2 changes: 1 addition & 1 deletion Sources/XCDiffCommand/Constants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ final class Constants {
debugVersionIdentifier(),
gitHashVersionIdentifier(),
].compactMap { $0 }
return Version(0, 11, 0, buildMetadataIdentifiers: identifiers)
return Version(0, 12, 0, buildMetadataIdentifiers: identifiers)
}()

private static let gitHash = "#GIT_SHORT_HASH#"
Expand Down
2 changes: 1 addition & 1 deletion Tests/XCDiffCommandTests/CommandsRunnerTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ final class CommandsRunnerTests: XCTestCase {
let code = subject.run(with: command)

// Then
XCTAssertEqual(printer.output, "0.11.0+debug.local\n")
XCTAssertEqual(printer.output, "0.12.0+debug.local\n")
XCTAssertEqual(code, 0)
}

Expand Down
Loading