Update to 2.22.0

This commit is contained in:
yonaskolb 2021-05-06 20:43:05 +10:00
parent 4233cc8578
commit 34dd90ad61
4 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
## Next Version
## 2.21.1
## 2.22.0
#### Added
- Support `runPostActionsOnFailure` for running build post scripts on failing build [#1075](https://github.com/yonaskolb/XcodeGen/pull/1075) @freddi-kit
@ -12,7 +12,7 @@
- Fixed scheme config variant lookups for some configs like `ProdDebug` and `Prod-Debug` that broke in 2.21.0 [#1070](https://github.com/yonaskolb/XcodeGen/pull/1070) @yonaskolb
- Fixed Xcode alerting to project changes after regeneration [#1072](https://github.com/yonaskolb/XcodeGen/pull/1072) @yonaskolb
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.21.0...2.21.1)
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.21.0...2.22.0)
## 2.21.0

View File

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

View File

@ -113,7 +113,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.21.1"),
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.22.0"),
```
And then import wherever needed: `import XcodeGenKit`

View File

@ -3,6 +3,6 @@ import ProjectSpec
import XcodeGenCLI
import Version
let version = Version("2.21.1")
let version = Version("2.22.0")
let cli = XcodeGenCLI(version: version)
cli.execute()