File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 22
33## Next Version
44
5+ ## 2.44.1
6+
7+ ### Fixed
8+ - Set the correct object version of 77 for Xcode 16 projects @jakobfelsatdm #1563
9+ - Support major.minor SPM package versions which would otherwise fail to decode to a string in yaml specs #1546 @RomanPodymov
10+ - Fix regression for ` parallelizable ` in scheme. It now resolves to "Enabled" and not "Swift Testing Only" #1565 @CraigSiemens
11+
512## 2.44.0
613
714### Added
3542- ** Breaking** : ` fileGroups ` are now relative paths when in included files, like other paths #1534 @shnhrrsn
3643- ** Breaking** : Local package paths are now relative paths when in included files, like other paths #1498 @juri
3744- Optional groups are no longer skipped when missing and generating projects from a different directory #1529 @SSheldon
38- - Handle major.minor SPM packages versions #1546 @RomanPodymov
3945
4046### Internal
4147
Original file line number Diff line number Diff line change 11TOOL_NAME = XcodeGen
22export EXECUTABLE_NAME = xcodegen
3- VERSION = 2.44.0
3+ VERSION = 2.44.1
44
55PREFIX = /usr/local
66INSTALL_PATH = $(PREFIX ) /bin/$(EXECUTABLE_NAME )
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ swift run xcodegen
112112Add the following to your Package.swift file's dependencies:
113113
114114``` swift
115- .package (url : " https://github.com/yonaskolb/XcodeGen.git" , from : " 2.44.0 " ),
115+ .package (url : " https://github.com/yonaskolb/XcodeGen.git" , from : " 2.44.1 " ),
116116```
117117
118118And then import wherever needed: ` import XcodeGenKit `
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ import ProjectSpec
33import XcodeGenCLI
44import Version
55
6- let version = Version ( " 2.44.0 " )
6+ let version = Version ( " 2.44.1 " )
77let cli = XcodeGenCLI ( version: version)
88cli. execute ( )
You can’t perform that action at this time.
0 commit comments