Update to 2.40.1

This commit is contained in:
Yonas Kolb 2024-04-10 20:49:49 +10:00
parent bc08f53505
commit 9816466703
4 changed files with 9 additions and 3 deletions

View File

@ -2,6 +2,12 @@
## Next Version
## 2.40.1
### Fixed
- Reverted `.xcprivacy` handling. They will now again be treated as resources by default @yonaskolb
## 2.40.0
### Added

View File

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

View File

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