Update to 2.25.0

This commit is contained in:
yonaskolb 2021-09-24 09:12:09 +10:00
parent fa6c5c9173
commit abb18642ba
3 changed files with 3 additions and 3 deletions

View File

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

View File

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