mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
Update to 2.23.0
This commit is contained in:
@@ -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,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)
|
||||
|
||||
@@ -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`
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user