Skip to content

Commit a19bbe4

Browse files
committed
Update to 2.44.0
# Conflicts: # CHANGELOG.md
1 parent ae42dd5 commit a19bbe4

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

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

33
## Next Version
44

5+
## 2.44.0
6+
57
### Added
8+
- Basic support for Xcode 16's synchronized folders #1541 @yonaskolb
9+
- `TargetSource.type` can now be `syncedFolder`
10+
- `Options.defaultSourceDirectoryType` can be set to `syncedFolder` for the default type in all sources in the project (defaults to `group`)
11+
- Benefits include faster generation and no cache invalidation or need to regenerate when files are added or removed from these folders
12+
- Note that not all TargetSource options like excludes are supported, just a simple path. Please test and see what is missing in your projects
613
- Added sanitizer options to run and test actions in Scheme #1550 @hi-kumar
714

815
### Fixed
916
- Added validation to ensure that all values in `settings.configs` are mappings. Previously, passing non-mapping values did not raise an error, making it difficult to detect misconfigurations. Now, `SpecParsingError.invalidConfigsMappingFormat` is thrown if misused. #1547 @Ryu0118
17+
- Use `USER` instead of `LOGNAME` for XCUserData #1559 @KostyaSha
1018

1119
## 2.43.0
1220

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

0 commit comments

Comments
 (0)