Update to 2.41.0

This commit is contained in:
Yonas Kolb 2024-05-20 21:37:00 +10:00
parent 576739bcb5
commit 1b0720d139
4 changed files with 13 additions and 3 deletions

View File

@ -2,6 +2,16 @@
## Next Version ## Next Version
## 2.41.0
### Added
- Added `xcodegen cache` command that writes the cache. Useful for `post-commit` git hook integration #1476 @yonaskolb
### Changed
- Include folders in file sorting #1466 @jflan-dd
### Fixed ### Fixed
- Fixed `supportedDestinations` validation when it contains watchOS for multiplatform apps. #1470 @tatsuky - Fixed `supportedDestinations` validation when it contains watchOS for multiplatform apps. #1470 @tatsuky

View File

@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen export EXECUTABLE_NAME = xcodegen
VERSION = 2.40.1 VERSION = 2.41.0
PREFIX = /usr/local PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME) 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: Add the following to your Package.swift file's dependencies:
```swift ```swift
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.40.1"), .package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.41.0"),
``` ```
And then import wherever needed: `import XcodeGenKit` And then import wherever needed: `import XcodeGenKit`

View File

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