From 34dd90ad612fcd09bfe0a6b7e5bf0399d4451966 Mon Sep 17 00:00:00 2001 From: yonaskolb Date: Thu, 6 May 2021 20:43:05 +1000 Subject: [PATCH] Update to 2.22.0 --- CHANGELOG.md | 4 ++-- Makefile | 2 +- README.md | 2 +- Sources/XcodeGen/main.swift | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 592ad88d..e02e54fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## Next Version -## 2.21.1 +## 2.22.0 #### Added - Support `runPostActionsOnFailure` for running build post scripts on failing build [#1075](https://github.com/yonaskolb/XcodeGen/pull/1075) @freddi-kit @@ -12,7 +12,7 @@ - Fixed scheme config variant lookups for some configs like `ProdDebug` and `Prod-Debug` that broke in 2.21.0 [#1070](https://github.com/yonaskolb/XcodeGen/pull/1070) @yonaskolb - Fixed Xcode alerting to project changes after regeneration [#1072](https://github.com/yonaskolb/XcodeGen/pull/1072) @yonaskolb -[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.21.0...2.21.1) +[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.21.0...2.22.0) ## 2.21.0 diff --git a/Makefile b/Makefile index f4100679..e9a01262 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ TOOL_NAME = XcodeGen export EXECUTABLE_NAME = xcodegen -VERSION = 2.21.1 +VERSION = 2.22.0 PREFIX = /usr/local INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME) diff --git a/README.md b/README.md index 020640cd..087f7361 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.21.1"), +.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.22.0"), ``` And then import wherever needed: `import XcodeGenKit` diff --git a/Sources/XcodeGen/main.swift b/Sources/XcodeGen/main.swift index e9854ad3..32aacfd4 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.21.1") +let version = Version("2.22.0") let cli = XcodeGenCLI(version: version) cli.execute()