Skip to content

Commit 99301ee

Browse files
authored
Bump to 0.13.0 (#144)
- To prepare for the 0.13.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.13.0` is displayed ```sh swift run xcdiff --version ``` Signed-off-by: Kassem Wridan <[email protected]>
1 parent 7c984a7 commit 99301ee

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.12.0")),
74+
.package(url: "https://github.com/bloomberg/xcdiff", .upToNextMinor(from: "0.13.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 = 12
2+
VERSION_MINOR = 13
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, 12, 0, buildMetadataIdentifiers: identifiers)
27+
return Version(0, 13, 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
@@ -214,7 +214,7 @@ final class CommandsRunnerTests: XCTestCase {
214214
let code = subject.run(with: command)
215215

216216
// Then
217-
XCTAssertEqual(printer.output, "0.12.0+debug.local\n")
217+
XCTAssertEqual(printer.output, "0.13.0+debug.local\n")
218218
XCTAssertEqual(code, 0)
219219
}
220220

0 commit comments

Comments
 (0)