Update to 2.24.0

This commit is contained in:
yonaskolb 2021-06-27 22:30:14 +10:00
parent 66b1db4b5c
commit 270ef8b279
4 changed files with 7 additions and 3 deletions

View File

@ -2,6 +2,8 @@
## Next Version
## 2.24.0
### Added
- Added support for DocC Catalogs [#1091](https://github.com/yonaskolb/XcodeGen/pull/1091) @brevansio
@ -12,6 +14,8 @@
### Changed
- **Breaking**: Rename the `platform` field on `Dependency` to `platformFilter` [#1087](https://github.com/yonaskolb/XcodeGen/pull/1087) @daltonclaybrook
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.23.1...2.24.0)
## 2.23.1
### Changed

View File

@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen
VERSION = 2.23.1
VERSION = 2.24.0
PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)

View File

@ -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.23.1"),
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.24.0"),
```
And then import wherever needed: `import XcodeGenKit`

View File

@ -3,6 +3,6 @@ import ProjectSpec
import XcodeGenCLI
import Version
let version = Version("2.23.1")
let version = Version("2.24.0")
let cli = XcodeGenCLI(version: version)
cli.execute()