Skip to content

Commit 3114831

Browse files
committed
Update to 2.45.2
1 parent 6d74ca6 commit 3114831

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
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

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.45.1
3+
VERSION = 2.45.2
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.45.1"),
115+
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.45.2"),
116116
```
117117

118118
And then import wherever needed: `import XcodeGenKit`

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# The release process for XcodeGen
22

33
1. 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`
66
1. Update the version at the top of `Makefile`
77
1. Run `make release`

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.45.1")
6+
let version = Version("2.45.2")
77
let cli = XcodeGenCLI(version: version)
88
cli.execute()

0 commit comments

Comments
 (0)