Update to 2.38.0

This commit is contained in:
Yonas Kolb
2023-10-31 22:01:04 +11:00
parent 4c0b4aed22
commit cf8ac6b61c
4 changed files with 5 additions and 3 deletions
+2
View File
@@ -2,6 +2,8 @@
## Next Version
## 2.38.0
### Added
- [Multi-destination targets](https://github.com/yonaskolb/XcodeGen/blob/master/Docs/ProjectSpec.md#supported-destinations) #1336 @amatig
- Added `supportedDestinations` to target
+1 -1
View File
@@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen
VERSION = 2.37.0
VERSION = 2.38.0
PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
+1 -1
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.37.0"),
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.38.0"),
```
And then import wherever needed: `import XcodeGenKit`
+1 -1
View File
@@ -3,6 +3,6 @@ import ProjectSpec
import XcodeGenCLI
import Version
let version = Version("2.37.0")
let version = Version("2.38.0")
let cli = XcodeGenCLI(version: version)
cli.execute()