From cf8ac6b61c1fd6bb2dd20cf397df514e667b6ece Mon Sep 17 00:00:00 2001 From: Yonas Kolb Date: Tue, 31 Oct 2023 22:01:04 +1100 Subject: [PATCH] Update to 2.38.0 --- CHANGELOG.md | 2 ++ Makefile | 2 +- README.md | 2 +- Sources/XcodeGen/main.swift | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 366f180c..4e863cb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Next Version +## 2.38.0 + ### Added - [Multi-destination targets](https://github.com/yonaskolb/XcodeGen/blob/master/Docs/ProjectSpec.md#supported-destinations) #1336 @amatig - Added `supportedDestinations` to target diff --git a/Makefile b/Makefile index 5b741e40..0e475b33 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ TOOL_NAME = XcodeGen export EXECUTABLE_NAME = xcodegen -VERSION = 2.37.0 +VERSION = 2.38.0 PREFIX = /usr/local INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME) diff --git a/README.md b/README.md index 0ece7479..76a3b2af 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.37.0"), +.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.38.0"), ``` And then import wherever needed: `import XcodeGenKit` diff --git a/Sources/XcodeGen/main.swift b/Sources/XcodeGen/main.swift index d52668c0..d52d89cc 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.37.0") +let version = Version("2.38.0") let cli = XcodeGenCLI(version: version) cli.execute()