Skip to content

Commit

Permalink
Update to 2.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yonaskolb committed Jun 17, 2020
1 parent 7da953a commit 10dc801
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Change Log

## Next Version

## 2.16.0

#### Added
- Improve speed of metadata parsing and dependency resolution. [#803](https://github.com/yonaskolb/XcodeGen/pull/803) @michaeleisel
- Improve support for iOS sticker packs and add support for `launchAutomaticallySubstyle` to run schemes. [#824](https://github.com/yonaskolb/XcodeGen/pull/824) @scelis
Expand Down Expand Up @@ -30,6 +33,8 @@
- Compile `xcmappingmodel` files instead of copying bundle resources. [#834](https://github.com/yonaskolb/XcodeGen/pull/834) @jcolicchio
- 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

[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.15.1...2.16.0)

## 2.15.1

#### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen
VERSION = 2.15.1
VERSION = 2.16.0

PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ swift run xcodegen
Add the following to your Package.swift file's dependencies:

```swift
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.15.1"),
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.16.0"),
```

And then import wherever needed: `import XcodeGenKit`
Expand Down
2 changes: 1 addition & 1 deletion Sources/XcodeGen/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import ProjectSpec
import XcodeGenCLI
import Version

let version = Version("2.15.1")
let version = Version("2.16.0")
let cli = XcodeGenCLI(version: version)
cli.execute()

0 comments on commit 10dc801

Please sign in to comment.