Skip to content

Commit 8045fc5

Browse files
committed
Update to 2.45.0
1 parent decc743 commit 8045fc5

4 files changed

Lines changed: 22 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,25 @@
22

33
## Next Version
44

5-
- Adds an `explicitFolders` property to `TargetSource` that is passed through to `PBXFileSystemSynchronizedRootGroup`, to turn entire subfolders into Resources. #1596 @macguru
6-
- Allow synced folders to be sorted using `groupOrdering`. #1596 @macguru
7-
- Fixed synced folders ignoring `createIntermediateGroups=YES` and always beging created at the root level. #1596 @macguru
8-
- Fix membership exceptions not working for nested synced folders with intermediate groups enabled. #1596 @macguru
5+
## 2.45.0
6+
7+
### Added
8+
- Added ability to specify project format version via `projectFormat` option #1566 @anivaros
9+
- Added `explicitFolders` property to `TargetSource` that is passed through to `PBXFileSystemSynchronizedRootGroup`, to turn entire subfolders into Resources #1596 @macguru
10+
- Allow synced folders to be sorted using `groupOrdering` #1596 @macguru
11+
- Added `excludes` support for `syncedFolder` sources with glob pattern matching #1587 @mirkokg
12+
13+
### Fixed
14+
- Fixed synced folders ignoring `createIntermediateGroups=YES` and always being created at the root level #1596 @macguru
15+
- Fix membership exceptions not working for nested synced folders with intermediate groups enabled #1596 @macguru
16+
- Fix `supportedDestinations` presets being injected when `settingPresets` is `none` #1599 @macguru
17+
- Automatically exclude `Info.plist` from synced folder membership when it's within the synced folder #1587 @mirkokg
18+
- Add empty copy resources build phase for synced folders so resources are copied correctly #1587 @mirkokg
19+
20+
### Internal
21+
- Update to XcodeProj 9.10.1 #1597 @yonaskolb
22+
- Fix CI: add explicit xcodebuild destinations and update Xcode matrix #1594 @yonaskolb
23+
- Update ArtifactBundleGen to 0.0.8 #1570 @georgenavarro
924

1025
## 2.44.1
1126

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

0 commit comments

Comments
 (0)