Update to 2.10.1

This commit is contained in:
Yonas Kolb 2019-11-01 10:09:48 +11:00
parent 292cee1f6e
commit b7a597200d
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen
VERSION = 2.10.0
VERSION = 2.10.1
PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)

View File

@ -107,7 +107,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.10.0"),
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.10.1"),
```
And then import wherever needed: `import XcodeGenKit`

View File

@ -2,6 +2,6 @@ import Foundation
import ProjectSpec
import XcodeGenCLI
let version = Version("2.10.0")
let version = Version("2.10.1")
let cli = XcodeGenCLI(version: version)
cli.execute()