Skip to content

Commit 8d3d347

Browse files
committed
Update to 2.45.4
1 parent df251b2 commit 8d3d347

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## Next Version
44

5+
## 2.45.4
6+
7+
### Fixed
8+
- Fix makePathRelative using wrong base path when projectDirectory differs #1608 @yonaskolb
9+
- Fix synced folder configFiles creating duplicate groups #1607 @AlexNsbmr
10+
- Fix synced folder root group duplication for paths referenced by multiple targets #1607 @AlexNsbmr
11+
- Fix synced folder directory-level membershipExceptions not working #1607 @AlexNsbmr
12+
513
## 2.45.3
614

715
### Fixed

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.3
3+
VERSION = 2.45.4
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.3"),
115+
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.45.4"),
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.45.3")
6+
let version = Version("2.45.4")
77
let cli = XcodeGenCLI(version: version)
88
cli.execute()

0 commit comments

Comments
 (0)