Update to 2.21.0

This commit is contained in:
yonaskolb 2021-05-01 16:08:50 +10:00
parent 5b1b56df4a
commit a6cfa0e5b6
4 changed files with 7 additions and 3 deletions

View File

@ -2,6 +2,8 @@
## Next Version
## 2.21.0
#### Added
- Support weak link for Swift Package Dependency [#1064](https://github.com/yonaskolb/XcodeGen/pull/1064) @freddi-kit
@ -12,6 +14,8 @@
- The `Core` target is renamed to avoid collisions with other packages. [#1057](https://github.com/yonaskolb/XcodeGen/pull/1057) @elliottwilliams
- Lookup scheme config variants by whole words, fixing incorrect assignment in names that contain subtrings of each other (eg PreProd and Prod) [#976](https://github.com/yonaskolb/XcodeGen/pull/976) @stefanomondino
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.20.0...2.21.0)
## 2.20.0
#### Added

View File

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

View File

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