From 95bc051d268f6b8b924ae9c84e40566efe90cb80 Mon Sep 17 00:00:00 2001 From: yonaskolb Date: Mon, 25 Mar 2019 21:10:39 +1100 Subject: [PATCH] Update to 2.3.0 --- CHANGELOG.md | 8 ++++++-- Makefile | 2 +- Sources/XcodeGen/main.swift | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25b8a6f87..faa1100ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ # Change Log -## Master +## Next Version + +## 2.3.0 #### Added -- Added ability to automatically find all the frameworks for Carthage dependencies via `options.findCarthageFrameworks` or `dependency.findFrameworks`. See the [Carthage](Docs/Usage.md#carthage) usage docs for more info [#506](https://github.com/yonaskolb/XcodeGen/pull/506) [#543](https://github.com/yonaskolb/XcodeGen/pull/543) @rpassis @yonaskolb +- Added ability to automatically find all the frameworks for Carthage dependencies via the global `options.findCarthageFrameworks` or dependency specfic `dependency.findFrameworks`. See the [Carthage](Docs/Usage.md#carthage) usage docs for more info [#506](https://github.com/yonaskolb/XcodeGen/pull/506) [#543](https://github.com/yonaskolb/XcodeGen/pull/543) @rpassis @yonaskolb - Added support for nested target templates [#534](https://github.com/yonaskolb/XcodeGen/pull/534) @tomquist - Added ability to define `templateAttributes` within a target to be able to parameterize templates. [#533](https://github.com/yonaskolb/XcodeGen/pull/533) @tomquist - Added ability to set `link` to false in framework dependencies [#532](https://github.com/yonaskolb/XcodeGen/pull/532) @dimatosaurus @@ -21,6 +23,8 @@ - Fix multi-platform target templates [#541](https://github.com/yonaskolb/XcodeGen/pull/541) @yonaskolb - Fixed sources in an included target not being relative when the sources are mix of string and dictionaries [#542](https://github.com/yonaskolb/XcodeGen/pull/542) @yonaskolb +[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.2.0...2.3.0) + ## 2.2.0 #### Added diff --git a/Makefile b/Makefile index 469697f7e..d21837df8 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ TOOL_NAME = XcodeGen export EXECUTABLE_NAME = xcodegen -VERSION = 2.2.0 +VERSION = 2.3.0 PREFIX = /usr/local INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME) diff --git a/Sources/XcodeGen/main.swift b/Sources/XcodeGen/main.swift index e9c34b97e..3bf80ef98 100644 --- a/Sources/XcodeGen/main.swift +++ b/Sources/XcodeGen/main.swift @@ -2,6 +2,6 @@ import Foundation import ProjectSpec import XcodeGenCLI -let version = try Version("2.2.0") +let version = try Version("2.3.0") let cli = XcodeGenCLI(version: version) cli.execute()