From a6cfa0e5b656ee984143bfdb7779f87f08b38fe1 Mon Sep 17 00:00:00 2001 From: yonaskolb Date: Sat, 1 May 2021 16:08:50 +1000 Subject: [PATCH] Update to 2.21.0 --- CHANGELOG.md | 4 ++++ Makefile | 2 +- README.md | 2 +- Sources/XcodeGen/main.swift | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0258cd5b..a6b81ea2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Next Version +## 2.21.0 + #### Added - Support weak link for Swift Package Dependency [#1064](https://github.com/yonaskolb/XcodeGen/pull/1064) @freddi-kit @@ -12,6 +14,8 @@ - The `Core` target is renamed to avoid collisions with other packages. [#1057](https://github.com/yonaskolb/XcodeGen/pull/1057) @elliottwilliams - Lookup scheme config variants by whole words, fixing incorrect assignment in names that contain subtrings of each other (eg PreProd and Prod) [#976](https://github.com/yonaskolb/XcodeGen/pull/976) @stefanomondino +[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.20.0...2.21.0) + ## 2.20.0 #### Added diff --git a/Makefile b/Makefile index 38d04f74..f695f761 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ TOOL_NAME = XcodeGen export EXECUTABLE_NAME = xcodegen -VERSION = 2.20.0 +VERSION = 2.21.0 PREFIX = /usr/local INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME) diff --git a/README.md b/README.md index 65333f66..24f7144d 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,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.20.0"), +.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.21.0"), ``` And then import wherever needed: `import XcodeGenKit` diff --git a/Sources/XcodeGen/main.swift b/Sources/XcodeGen/main.swift index 500d46e9..484fe5ed 100644 --- a/Sources/XcodeGen/main.swift +++ b/Sources/XcodeGen/main.swift @@ -3,6 +3,6 @@ import ProjectSpec import XcodeGenCLI import Version -let version = Version("2.20.0") +let version = Version("2.21.0") let cli = XcodeGenCLI(version: version) cli.execute()