From f63f652988355145d3a56ea6bf7257d42e6fdbb7 Mon Sep 17 00:00:00 2001 From: yonaskolb Date: Fri, 28 Jun 2019 16:58:28 +1000 Subject: [PATCH] Update to 2.6.0 --- CHANGELOG.md | 10 ++++++++-- Makefile | 2 +- README.md | 2 +- Sources/XcodeGen/main.swift | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 778c88c0..d06c5012 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,9 @@ ## Next Version +## 2.6.0 + #### Added -- Added ability to encode ProjectSpec to JSON [#545](https://github.com/yonaskolb/XcodeGen/pull/545) @ryohey - Added ability to skip tests [#582](https://github.com/yonaskolb/XcodeGen/pull/582) @kadarandras - Added ability to set `attributes` on build files [#583](https://github.com/yonaskolb/XcodeGen/pull/583) @min - Allow using environment variables in the form of `${SOME_VARIABLE}`. This might be a **breaking** change when a target template attribute is also defined as an environment variable [#594](https://github.com/yonaskolb/XcodeGen/pull/594) @tomquist @@ -15,7 +16,12 @@ #### Changed - Updated the default `compatibilityVersion` project setting from `Xcode 9.3` to `Xcode 10.0` [#581](https://github.com/yonaskolb/XcodeGen/pull/581) @acecilia -- Updated to XcodeProj 7.0.0 [#604](https://github.com/yonaskolb/XcodeGen/pull/604) @yonaskolb +- Updated to XcodeProj 7.0.0. Note that the length of generated UUIDs has changed [#604](https://github.com/yonaskolb/XcodeGen/pull/604) @yonaskolb + +#### Internal +- Added ability to encode ProjectSpec [#545](https://github.com/yonaskolb/XcodeGen/pull/545) @ryohey + +[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.5.0...2.6.0) ## 2.5.0 diff --git a/Makefile b/Makefile index 9fba9dc0..29079924 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ TOOL_NAME = XcodeGen export EXECUTABLE_NAME = xcodegen -VERSION = 2.5.0 +VERSION = 2.6.0 PREFIX = /usr/local INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME) diff --git a/README.md b/README.md index 33297f2d..139087f7 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,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.5.0"), +.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.6.0"), ``` And then import wherever needed: `import XcodeGenKit` diff --git a/Sources/XcodeGen/main.swift b/Sources/XcodeGen/main.swift index 83b89e7c..c3c66e28 100644 --- a/Sources/XcodeGen/main.swift +++ b/Sources/XcodeGen/main.swift @@ -2,6 +2,6 @@ import Foundation import ProjectSpec import XcodeGenCLI -let version = Version("2.5.0") +let version = Version("2.6.0") let cli = XcodeGenCLI(version: version) cli.execute()