Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update to 2.1.0
  • Loading branch information
yonaskolb committed Dec 18, 2018
1 parent f04c3e0 commit cf703cd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

## Master

## 2.1.0

#### Added
- Added an experiment new caching feature. Pass `--use-cache` to opt in. This will read and write from a cache file to prevent unnecessarily generating the project. Give it a try as it may become the default in a future release [#412](https://github.com/yonaskolb/XcodeGen/pull/412) @yonaskolb

Expand All @@ -20,6 +22,8 @@
- Add `.intentdefinition` files to sources build phase instead of resources [#442](https://github.com/yonaskolb/XcodeGen/pull/442) @yonaskolb
- Add `mlmodel` files to sources build phase instead of resources [#457](https://github.com/yonaskolb/XcodeGen/pull/457) @dwb357

[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.0.0...2.1.0)

## 2.0.0

#### Added
Expand Down
2 changes: 1 addition & 1 deletion Makefile
@@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen
VERSION = 2.0.0
VERSION = 2.1.0

PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
Expand Down
2 changes: 1 addition & 1 deletion Sources/XcodeGen/main.swift
Expand Up @@ -2,6 +2,6 @@ import Foundation
import ProjectSpec
import XcodeGenCLI

let version = try Version("2.0.0")
let version = try Version("2.1.0")
let cli = XcodeGenCLI(version: version)
cli.execute()

0 comments on commit cf703cd

Please sign in to comment.