Update to 2.10.0

This commit is contained in:
yonaskolb 2019-10-27 23:25:47 +11:00
parent 15037d8b12
commit 03b74b37c0
4 changed files with 7 additions and 3 deletions

View File

@ -2,6 +2,8 @@
## Next Version
## 2.10.0
#### Added
- Support Target Reference to another project. [#655](https://github.com/yonaskolb/XcodeGen/pull/655) @kateinoigakukun
- Added `coverageTargets` for test target. This enables to gather code coverage for specific targets. [#656](https://github.com/yonaskolb/XcodeGen/pull/656) @kateinoigakukun
@ -16,6 +18,8 @@
#### Internal
- Restructure targets [#698](https://github.com/yonaskolb/XcodeGen/pull/698) @yonaskolb
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.9.0...2.10.0)
## 2.9.0
#### Added

View File

@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen
VERSION = 2.9.0
VERSION = 2.10.0
PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)

View File

@ -107,7 +107,7 @@ swift run xcodegen
Add the following to your Package.swift file's dependencies:
```swift
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.9.0"),
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.10.0"),
```
And then import wherever needed: `import XcodeGenKit`

View File

@ -2,6 +2,6 @@ import Foundation
import ProjectSpec
import XcodeGenCLI
let version = Version("2.9.0")
let version = Version("2.10.0")
let cli = XcodeGenCLI(version: version)
cli.execute()