File tree Expand file tree Collapse file tree 5 files changed +8
-4
lines changed
Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 22
33## Next Version
44
5+ ## 2.45.2
6+
7+ ### Fixed
8+ - Validate empty source paths to prevent project root inclusion #1601 @yonaskolb
59- Fix missing productRefGroup in generated projects #1591 @ruslic19
610
711## 2.45.1
Original file line number Diff line number Diff line change 11TOOL_NAME = XcodeGen
22export EXECUTABLE_NAME = xcodegen
3- VERSION = 2.45.1
3+ VERSION = 2.45.2
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.45.1 " ),
115+ .package (url : " https://github.com/yonaskolb/XcodeGen.git" , from : " 2.45.2 " ),
116116```
117117
118118And then import wherever needed: ` import XcodeGenKit `
Original file line number Diff line number Diff line change 11# The release process for XcodeGen
22
331 . Make sure ` CHANGELOG.md ` is up to date:
4- - All relevant entries have been added with the PR link and author
4+ - All merged PRs since the last release have been added with the PR link and author (check ` git log <last-tag>..HEAD ` )
55 - The new version number is added at the top after ` Master `
661 . Update the version at the top of ` Makefile `
771 . Run ` make release `
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.45.1 " )
6+ let version = Version ( " 2.45.2 " )
77let cli = XcodeGenCLI ( version: version)
88cli. execute ( )
You can’t perform that action at this time.
0 commit comments