Update to 2.11.0

This commit is contained in:
yonaskolb 2019-12-03 22:57:09 +11:00
parent 44065bc3dc
commit f064bdf6a1
4 changed files with 7 additions and 3 deletions

View File

@ -2,6 +2,8 @@
## Next Version
## 2.11.0
#### Added
- Add Carthage static framework dependencies support. [#688](https://github.com/yonaskolb/XcodeGen/pull/688) @giginet
- Added `xcodegen dump` command [#710](https://github.com/yonaskolb/XcodeGen/pull/710) @yonaskolb
@ -21,6 +23,8 @@
- Updated XcodeProj to 7.4.0 [#709](https://github.com/yonaskolb/XcodeGen/pull/709) [#715](https://github.com/yonaskolb/XcodeGen/pull/715) @yonaskolb
- Updated to Swift 5.1 [#714](https://github.com/yonaskolb/XcodeGen/pull/714) @yonaskolb
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.10.1...2.11.0)
## 2.10.1
#### Fixed

View File

@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen
VERSION = 2.10.1
VERSION = 2.11.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.10.1"),
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.11.0"),
```
And then import wherever needed: `import XcodeGenKit`

View File

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