Skip to content

Commit 8a55a42

Browse files
Bump version to 0.4.0 (#61)
- Ran `make update_version` after updating the version in the `Makefile` Test Plan: - Verify CI checks pass Signed-off-by: Marcin Iwanicki <[email protected]>
1 parent 9ee0650 commit 8a55a42

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
@@ -67,7 +67,7 @@ Add xcdiff to your `Package.swift` file:
6767
```swift
6868
dependencies: [
6969
// ...
70-
.package(url: "https://github.com/bloomberg/xcdiff", .upToNextMinor(from: "0.3.0")),
70+
.package(url: "https://github.com/bloomberg/xcdiff", .upToNextMinor(from: "0.4.0")),
7171
]
7272
```
7373

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
VERSION_MAJOR = 0
2-
VERSION_MINOR = 3
2+
VERSION_MINOR = 4
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, 3, 0, buildMetadataIdentifiers: identifiers)
27+
return Version(0, 4, 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
@@ -196,7 +196,7 @@ final class CommandsRunnerTests: XCTestCase {
196196
let code = subject.run(with: command)
197197

198198
// Then
199-
XCTAssertEqual(printer.output, "0.3.0+debug.local\n")
199+
XCTAssertEqual(printer.output, "0.4.0+debug.local\n")
200200
XCTAssertEqual(code, 0)
201201
}
202202

0 commit comments

Comments
 (0)