Update to 2.44.1

This commit is contained in:
Yonas Kolb
2025-07-22 19:29:49 +10:00
parent 8b3a68319b
commit 21ac9944b0
4 changed files with 10 additions and 4 deletions
+7 -1
View File
@@ -2,6 +2,13 @@
## Next Version
## 2.44.1
### Fixed
- Set the correct object version of 77 for Xcode 16 projects @jakobfelsatdm #1563
- Support major.minor SPM package versions which would otherwise fail to decode to a string in yaml specs #1546 @RomanPodymov
- Fix regression for `parallelizable` in scheme. It now resolves to "Enabled" and not "Swift Testing Only" #1565 @CraigSiemens
## 2.44.0
### Added
@@ -35,7 +42,6 @@
- **Breaking**: `fileGroups` are now relative paths when in included files, like other paths #1534 @shnhrrsn
- **Breaking**: Local package paths are now relative paths when in included files, like other paths #1498 @juri
- Optional groups are no longer skipped when missing and generating projects from a different directory #1529 @SSheldon
- Handle major.minor SPM packages versions #1546 @RomanPodymov
### Internal
+1 -1
View File
@@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen
VERSION = 2.44.0
VERSION = 2.44.1
PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
+1 -1
View File
@@ -112,7 +112,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.44.0"),
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.44.1"),
```
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.44.0")
let version = Version("2.44.1")
let cli = XcodeGenCLI(version: version)
cli.execute()