Update to 2.23.0

This commit is contained in:
yonaskolb
2021-05-19 23:03:03 +10:00
parent 8bfa2f33e4
commit 90bcaffbed
4 changed files with 7 additions and 3 deletions
+4
View File
@@ -2,6 +2,8 @@
## Next Version
## 2.23.0
#### Added
- Added ability to set custom platform for dependency [#934](https://github.com/yonaskolb/XcodeGen/pull/934) @raptorxcz
@@ -11,6 +13,8 @@
- Reverted "Change FRAMEWORK_SEARCH_PATH for xcframeworks (#1015)", introduced in 2.20.0. XCFrameworks need to be
referenced directly in the project for Xcode's build system to extract the appropriate frameworks [#1081](https://github.com/yonaskolb/XcodeGen/pull/1081) @elliottwilliams
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.22.0...2.23.0)
## 2.22.0
#### Added
+1 -1
View File
@@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen
VERSION = 2.22.0
VERSION = 2.23.0
PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
+1 -1
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.22.0"),
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.23.0"),
```
And then import wherever needed: `import XcodeGenKit`
+1 -1
View File
@@ -3,6 +3,6 @@ import ProjectSpec
import XcodeGenCLI
import Version
let version = Version("2.22.0")
let version = Version("2.23.0")
let cli = XcodeGenCLI(version: version)
cli.execute()