Skip to content

Commit 10dc801

Browse files
committed
Update to 2.16.0
1 parent 7da953a commit 10dc801

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Change Log
22

33
## Next Version
4+
5+
## 2.16.0
6+
47
#### Added
58
- Improve speed of metadata parsing and dependency resolution. [#803](https://github.com/yonaskolb/XcodeGen/pull/803) @michaeleisel
69
- Improve support for iOS sticker packs and add support for `launchAutomaticallySubstyle` to run schemes. [#824](https://github.com/yonaskolb/XcodeGen/pull/824) @scelis
@@ -30,6 +33,8 @@
3033
- Compile `xcmappingmodel` files instead of copying bundle resources. [#834](https://github.com/yonaskolb/XcodeGen/pull/834) @jcolicchio
3134
- Fixed issue where `Complie Sources` build phase is generated for resource bundles even when they have no files to compile [#878](https://github.com/yonaskolb/XcodeGen/pull/878) @nkukushkin
3235

36+
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.15.1...2.16.0)
37+
3338
## 2.15.1
3439

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

0 commit comments

Comments
 (0)