diff --git a/Documentation/Installation.md b/Documentation/Installation.md index eb23516..0da1734 100644 --- a/Documentation/Installation.md +++ b/Documentation/Installation.md @@ -67,7 +67,7 @@ Add xcdiff to your `Package.swift` file: ```swift dependencies: [ // ... - .package(url: "https://github.com/bloomberg/xcdiff", .upToNextMinor(from: "0.6.0")), + .package(url: "https://github.com/bloomberg/xcdiff", .upToNextMinor(from: "0.7.0")), ] ``` diff --git a/Makefile b/Makefile index 8110fc5..7ca5a99 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ VERSION_MAJOR = 0 -VERSION_MINOR = 6 +VERSION_MINOR = 7 VERSION_PATCH = 0 VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH) GIT_SHORT_HASH = $(shell git rev-parse --short HEAD) diff --git a/Sources/XCDiffCommand/Constants.swift b/Sources/XCDiffCommand/Constants.swift index 181e24e..cecbe07 100644 --- a/Sources/XCDiffCommand/Constants.swift +++ b/Sources/XCDiffCommand/Constants.swift @@ -24,7 +24,7 @@ final class Constants { debugVersionIdentifier(), gitHashVersionIdentifier(), ].compactMap { $0 } - return Version(0, 6, 0, buildMetadataIdentifiers: identifiers) + return Version(0, 7, 0, buildMetadataIdentifiers: identifiers) }() private static let gitHash = "#GIT_SHORT_HASH#" diff --git a/Tests/XCDiffCommandTests/CommandsRunnerTests.swift b/Tests/XCDiffCommandTests/CommandsRunnerTests.swift index e901819..b166823 100644 --- a/Tests/XCDiffCommandTests/CommandsRunnerTests.swift +++ b/Tests/XCDiffCommandTests/CommandsRunnerTests.swift @@ -203,7 +203,7 @@ final class CommandsRunnerTests: XCTestCase { let code = subject.run(with: command) // Then - XCTAssertEqual(printer.output, "0.6.0+debug.local\n") + XCTAssertEqual(printer.output, "0.7.0+debug.local\n") XCTAssertEqual(code, 0) }