Update to 2.45.2

This commit is contained in:
Yonas Kolb
2026-03-05 22:13:01 +11:00
parent 6d74ca6920
commit 311483139c
5 changed files with 8 additions and 4 deletions
+4
View File
@@ -2,6 +2,10 @@
## Next Version ## Next Version
## 2.45.2
### Fixed
- Validate empty source paths to prevent project root inclusion #1601 @yonaskolb
- Fix missing productRefGroup in generated projects #1591 @ruslic19 - Fix missing productRefGroup in generated projects #1591 @ruslic19
## 2.45.1 ## 2.45.1
+1 -1
View File
@@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen export EXECUTABLE_NAME = xcodegen
VERSION = 2.45.1 VERSION = 2.45.2
PREFIX = /usr/local PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME) 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: Add the following to your Package.swift file's dependencies:
```swift ```swift
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.45.1"), .package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.45.2"),
``` ```
And then import wherever needed: `import XcodeGenKit` And then import wherever needed: `import XcodeGenKit`
+1 -1
View File
@@ -1,7 +1,7 @@
# The release process for XcodeGen # The release process for XcodeGen
1. Make sure `CHANGELOG.md` is up to date: 1. Make sure `CHANGELOG.md` is up to date:
- All relevant entries have been added with the PR link and author - All merged PRs since the last release have been added with the PR link and author (check `git log <last-tag>..HEAD`)
- The new version number is added at the top after `Master` - The new version number is added at the top after `Master`
1. Update the version at the top of `Makefile` 1. Update the version at the top of `Makefile`
1. Run `make release` 1. Run `make release`
+1 -1
View File
@@ -3,6 +3,6 @@ import ProjectSpec
import XcodeGenCLI import XcodeGenCLI
import Version import Version
let version = Version("2.45.1") let version = Version("2.45.2")
let cli = XcodeGenCLI(version: version) let cli = XcodeGenCLI(version: version)
cli.execute() cli.execute()