Skip to content

Commit a6cfa0e

Browse files
committed
Update to 2.21.0
1 parent 5b1b56d commit a6cfa0e

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Next Version
44

5+
## 2.21.0
6+
57
#### Added
68
- Support weak link for Swift Package Dependency [#1064](https://github.com/yonaskolb/XcodeGen/pull/1064) @freddi-kit
79

@@ -12,6 +14,8 @@
1214
- The `Core` target is renamed to avoid collisions with other packages. [#1057](https://github.com/yonaskolb/XcodeGen/pull/1057) @elliottwilliams
1315
- Lookup scheme config variants by whole words, fixing incorrect assignment in names that contain subtrings of each other (eg PreProd and Prod) [#976](https://github.com/yonaskolb/XcodeGen/pull/976) @stefanomondino
1416

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

1721
#### Added

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TOOL_NAME = XcodeGen
22
export EXECUTABLE_NAME = xcodegen
3-
VERSION = 2.20.0
3+
VERSION = 2.21.0
44

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

README.md

Lines changed: 1 addition & 1 deletion
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.20.0"),
116+
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.21.0"),
117117
```
118118

119119
And then import wherever needed: `import XcodeGenKit`

Sources/XcodeGen/main.swift

Lines changed: 1 addition & 1 deletion
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.20.0")
6+
let version = Version("2.21.0")
77
let cli = XcodeGenCLI(version: version)
88
cli.execute()

0 commit comments

Comments
 (0)