Skip to content

Commit

Permalink
Bump version to 0.7.1
Browse files Browse the repository at this point in the history
- Preparing for new patch release to ensure xcdiff can run with Xcode 13 (already supported on main via #95)

Test Plan:

- Verify CI passes

Signed-off-by: Kassem Wridan <kwridan@bloomberg.net>
  • Loading branch information
kwridan committed Dec 10, 2021
1 parent cfe4380 commit a59f2be
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Documentation/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Add xcdiff to your `Package.swift` file:
```swift
dependencies: [
// ...
.package(url: "https://github.com/bloomberg/xcdiff", .upToNextMinor(from: "0.7.0")),
.package(url: "https://github.com/bloomberg/xcdiff", .upToNextMinor(from: "0.7.1")),
]
```

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION_MAJOR = 0
VERSION_MINOR = 7
VERSION_PATCH = 0
VERSION_PATCH = 1
VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)
GIT_SHORT_HASH = $(shell git rev-parse --short HEAD)

Expand Down
2 changes: 1 addition & 1 deletion Sources/XCDiffCommand/Constants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ final class Constants {
debugVersionIdentifier(),
gitHashVersionIdentifier(),
].compactMap { $0 }
return Version(0, 7, 0, buildMetadataIdentifiers: identifiers)
return Version(0, 7, 1, buildMetadataIdentifiers: identifiers)
}()

private static let gitHash = "#GIT_SHORT_HASH#"
Expand Down
2 changes: 1 addition & 1 deletion Tests/XCDiffCommandTests/CommandsRunnerTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ final class CommandsRunnerTests: XCTestCase {
let code = subject.run(with: command)

// Then
XCTAssertEqual(printer.output, "0.7.0+debug.local\n")
XCTAssertEqual(printer.output, "0.7.1+debug.local\n")
XCTAssertEqual(code, 0)
}

Expand Down

0 comments on commit a59f2be

Please sign in to comment.