Skip to content

Commit a314558

Browse files
authored
Merge pull request #100 from kwridan/feature/0.8.0
Bump version to 0.8.0
2 parents a56f40c + b16ca4b commit a314558

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.7.0")),
70+
.package(url: "https://github.com/bloomberg/xcdiff", .upToNextMinor(from: "0.8.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 = 7
2+
VERSION_MINOR = 8
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, 7, 0, buildMetadataIdentifiers: identifiers)
27+
return Version(0, 8, 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
@@ -203,7 +203,7 @@ final class CommandsRunnerTests: XCTestCase {
203203
let code = subject.run(with: command)
204204

205205
// Then
206-
XCTAssertEqual(printer.output, "0.7.0+debug.local\n")
206+
XCTAssertEqual(printer.output, "0.8.0+debug.local\n")
207207
XCTAssertEqual(code, 0)
208208
}
209209

0 commit comments

Comments
 (0)