Skip to content

Commit 8ae8a10

Browse files
authored
Bump to 0.12.0 (#134)
- To prepare for the 0.11.0 release, bumping the xcdiff version by following the release documentation References: - https://github.com/bloomberg/xcdiff/blob/main/Documentation/Release.md Test Plan: - Run xcdiff with the `--version` flag and verify `0.11.0` is displayed ```sh swift run xcdiff --version ``` Signed-off-by: Kassem Wridan <[email protected]>
1 parent 47d8ae5 commit 8ae8a10

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Documentation/Installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Add xcdiff to your `Package.swift` file:
7171
```swift
7272
dependencies: [
7373
// ...
74-
.package(url: "https://github.com/bloomberg/xcdiff", .upToNextMinor(from: "0.11.0")),
74+
.package(url: "https://github.com/bloomberg/xcdiff", .upToNextMinor(from: "0.12.0")),
7575
]
7676
```
7777

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
VERSION_MAJOR = 0
2-
VERSION_MINOR = 11
2+
VERSION_MINOR = 12
33
VERSION_PATCH = 0
44
VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)
55
GIT_SHORT_HASH = $(shell git rev-parse --short HEAD)

Sources/XCDiffCommand/Constants.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ final class Constants {
2424
debugVersionIdentifier(),
2525
gitHashVersionIdentifier(),
2626
].compactMap { $0 }
27-
return Version(0, 11, 0, buildMetadataIdentifiers: identifiers)
27+
return Version(0, 12, 0, buildMetadataIdentifiers: identifiers)
2828
}()
2929

3030
private static let gitHash = "#GIT_SHORT_HASH#"

Tests/XCDiffCommandTests/CommandsRunnerTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ final class CommandsRunnerTests: XCTestCase {
209209
let code = subject.run(with: command)
210210

211211
// Then
212-
XCTAssertEqual(printer.output, "0.11.0+debug.local\n")
212+
XCTAssertEqual(printer.output, "0.12.0+debug.local\n")
213213
XCTAssertEqual(code, 0)
214214
}
215215

0 commit comments

Comments
 (0)