Skip to content

Commit 21ac994

Browse files
committed
Update to 2.44.1
1 parent 8b3a683 commit 21ac994

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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
@@ -35,7 +42,6 @@
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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TOOL_NAME = XcodeGen
22
export EXECUTABLE_NAME = xcodegen
3-
VERSION = 2.44.0
3+
VERSION = 2.44.1
44

55
PREFIX = /usr/local
66
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ swift run xcodegen
112112
Add 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

118118
And then import wherever needed: `import XcodeGenKit`

Sources/XcodeGen/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import ProjectSpec
33
import XcodeGenCLI
44
import Version
55

6-
let version = Version("2.44.0")
6+
let version = Version("2.44.1")
77
let cli = XcodeGenCLI(version: version)
88
cli.execute()

0 commit comments

Comments
 (0)