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