Skip to content

Commit 270ef8b

Browse files
committed
Update to 2.24.0
1 parent 66b1db4 commit 270ef8b

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Next Version
44

5+
## 2.24.0
6+
57
### Added
68

79
- Added support for DocC Catalogs [#1091](https://github.com/yonaskolb/XcodeGen/pull/1091) @brevansio
@@ -12,6 +14,8 @@
1214
### Changed
1315
- **Breaking**: Rename the `platform` field on `Dependency` to `platformFilter` [#1087](https://github.com/yonaskolb/XcodeGen/pull/1087) @daltonclaybrook
1416

17+
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.23.1...2.24.0)
18+
1519
## 2.23.1
1620

1721
### Changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TOOL_NAME = XcodeGen
22
export EXECUTABLE_NAME = xcodegen
3-
VERSION = 2.23.1
3+
VERSION = 2.24.0
44

55
PREFIX = /usr/local
66
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ swift run xcodegen
113113
Add the following to your Package.swift file's dependencies:
114114

115115
```swift
116-
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.23.1"),
116+
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.24.0"),
117117
```
118118

119119
And then import wherever needed: `import XcodeGenKit`

Sources/XcodeGen/main.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import ProjectSpec
33
import XcodeGenCLI
44
import Version
55

6-
let version = Version("2.23.1")
6+
let version = Version("2.24.0")
77
let cli = XcodeGenCLI(version: version)
88
cli.execute()

0 commit comments

Comments
 (0)