Update to 2.30.0

This commit is contained in:
Yonas Kolb 2022-07-16 16:57:26 +10:00
parent c082bc0c7c
commit c1d5c65ae4
4 changed files with 5 additions and 3 deletions

View File

@ -2,6 +2,8 @@
## Next Version
## 2.30.0
### Added
- Added support for new target type `extensionkit-extension` in Xcode 14 #1228 @aleksproger

View File

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

View File

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