Update to 2.39.0

This commit is contained in:
Yonas Kolb 2024-02-14 21:48:13 +11:00
parent 8b340b19d4
commit d1110b1a72
4 changed files with 16 additions and 6 deletions

View File

@ -1,15 +1,25 @@
# Change Log
## Next Version
## 2.39.0
### Added
- Support Artifact Bundle #1388 @freddi-kit
- Added support for `.xcstrings` String Catalogs #1421 @nicolasbosi95
- Added default `LD_RUNPATH_SEARCH_PATHS` for visionOS #1444 @Dahlgren
- Added `watchOS` as a supported cross platform destination #1438 @tatsuky
### Added
- Added support for String Catalogs (`.xcstrings`) #1421 @nicolasbosi95
### Fixed
- Fixed custom local package groups not being created #1416 @JaapManenschijn
- Fixed spec validation error type #1439 @Lutzifer
- Create parent group for local package groups if it does not exist already #1417 @JaapManenschijn
### Internal
- Updated Rainbow version #1424 @nysander
## 2.38.0

View File

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

View File

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