From 21ac9944b0ab546a07422dbed86f33dd2ebd76f8 Mon Sep 17 00:00:00 2001 From: Yonas Kolb Date: Tue, 22 Jul 2025 19:29:49 +1000 Subject: [PATCH] Update to 2.44.1 --- CHANGELOG.md | 8 +++++++- Makefile | 2 +- README.md | 2 +- Sources/XcodeGen/main.swift | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36225463..bc18bf44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Makefile b/Makefile index 24768c2a..79a37405 100644 --- a/Makefile +++ b/Makefile @@ -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) diff --git a/README.md b/README.md index 9e6d5831..6a7ed7e7 100644 --- a/README.md +++ b/README.md @@ -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` diff --git a/Sources/XcodeGen/main.swift b/Sources/XcodeGen/main.swift index 07a99a7e..577fe92b 100644 --- a/Sources/XcodeGen/main.swift +++ b/Sources/XcodeGen/main.swift @@ -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()