mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2024-12-11 07:16:40 +03:00
Update to 2.10.0
This commit is contained in:
parent
15037d8b12
commit
03b74b37c0
@ -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
|
||||
|
2
Makefile
2
Makefile
@ -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)
|
||||
|
@ -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`
|
||||
|
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user