Skip to content

Commit f631b64

Browse files
committed
Update to 2.17.0
1 parent 0bed4b8 commit f631b64

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

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

33
## Next Version
44

5+
## 2.17.0
6+
57
#### Added
68
- Added `options.fileTypes` which lets you set cross project defaults for certain file extensions [#914](https://github.com/yonaskolb/XcodeGen/pull/914) @yonaskolb
79
- Added `onlyCopyFilesOnInstall` option to targets for the Embed Files build phase. [#912](https://github.com/yonaskolb/XcodeGen/pull/912) @jsorge
@@ -14,6 +16,8 @@
1416
#### Internal
1517
- Updated to XcodeProj 7.13.0 [#908](https://github.com/yonaskolb/XcodeGen/pull/908) @brentleyjones
1618

19+
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.16.0...2.17.0)
20+
1721
## 2.16.0
1822

1923
#### Added

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.16.0
3+
VERSION = 2.17.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
@@ -108,7 +108,7 @@ swift run xcodegen
108108
Add the following to your Package.swift file's dependencies:
109109

110110
```swift
111-
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.16.0"),
111+
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.17.0"),
112112
```
113113

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

0 commit comments

Comments
 (0)