Update to 2.37.0

This commit is contained in:
Yonas Kolb 2023-08-16 23:48:44 +10:00
parent d8d5457f48
commit b448a6718f
4 changed files with 5 additions and 3 deletions

View File

@ -2,6 +2,8 @@
## Next Version
## 2.37.0
### Fixed
- Fixed source file `includes` not working when no paths were found #1337 @shnhrrsn

View File

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

View File

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