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 2
2
3
3
## Next Version
4
4
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
+
5
12
## 2.44.0
6
13
7
14
### Added
35
42
- ** Breaking** : ` fileGroups ` are now relative paths when in included files, like other paths #1534 @shnhrrsn
36
43
- ** Breaking** : Local package paths are now relative paths when in included files, like other paths #1498 @juri
37
44
- 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
39
45
40
46
### Internal
41
47
Original file line number Diff line number Diff line change 1
1
TOOL_NAME = XcodeGen
2
2
export EXECUTABLE_NAME = xcodegen
3
- VERSION = 2.44.0
3
+ VERSION = 2.44.1
4
4
5
5
PREFIX = /usr/local
6
6
INSTALL_PATH = $(PREFIX ) /bin/$(EXECUTABLE_NAME )
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ swift run xcodegen
112
112
Add the following to your Package.swift file's dependencies:
113
113
114
114
``` 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 " ),
116
116
```
117
117
118
118
And then import wherever needed: ` import XcodeGenKit `
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ import ProjectSpec
3
3
import XcodeGenCLI
4
4
import Version
5
5
6
- let version = Version ( " 2.44.0 " )
6
+ let version = Version ( " 2.44.1 " )
7
7
let cli = XcodeGenCLI ( version: version)
8
8
cli. execute ( )
You can’t perform that action at this time.
0 commit comments