Update to 2.12.0

This commit is contained in:
yonaskolb 2020-02-02 00:40:14 +11:00
parent 1587e4de2a
commit 8b12837cdb
4 changed files with 7 additions and 3 deletions

View File

@ -2,6 +2,8 @@
## Next Version
## 2.12.0
#### Added
- Added pre and post command options. Useful for running `pod install` in combination with `--use-cache` [#759](https://github.com/yonaskolb/XcodeGen/pull/759) @yonaskolb
- Support for language and region settings on a target basis [#728](https://github.com/yonaskolb/XcodeGen/pull/728) @FranzBusch
@ -19,6 +21,8 @@
#### Internal
- Update to SwiftCLI 6.0 and use the new property wrappers [#749](https://github.com/yonaskolb/XcodeGen/pull/749) @yonaskolb
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.11.0...2.12.0)
## 2.11.0
#### Added

View File

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

View File

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