From 1b0720d1391016f0c4407ad0d6c18ed2a57b6329 Mon Sep 17 00:00:00 2001 From: Yonas Kolb Date: Mon, 20 May 2024 21:37:00 +1000 Subject: [PATCH] Update to 2.41.0 --- CHANGELOG.md | 10 ++++++++++ Makefile | 2 +- README.md | 2 +- Sources/XcodeGen/main.swift | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 257cd75c..d60e150f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ ## Next Version +## 2.41.0 + +### Added + +- Added `xcodegen cache` command that writes the cache. Useful for `post-commit` git hook integration #1476 @yonaskolb + +### Changed + +- Include folders in file sorting #1466 @jflan-dd + ### Fixed - Fixed `supportedDestinations` validation when it contains watchOS for multiplatform apps. #1470 @tatsuky diff --git a/Makefile b/Makefile index f68bbbf0..d32a730f 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ TOOL_NAME = XcodeGen export EXECUTABLE_NAME = xcodegen -VERSION = 2.40.1 +VERSION = 2.41.0 PREFIX = /usr/local INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME) diff --git a/README.md b/README.md index 2fa71f96..9de566ec 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.40.1"), +.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.41.0"), ``` And then import wherever needed: `import XcodeGenKit` diff --git a/Sources/XcodeGen/main.swift b/Sources/XcodeGen/main.swift index 37b11e0c..74fa4eb8 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.40.1") +let version = Version("2.41.0") let cli = XcodeGenCLI(version: version) cli.execute()