Skip to content

Commit 34dd90a

Browse files
committed
Update to 2.22.0
1 parent 4233cc8 commit 34dd90a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Next Version
44

5-
## 2.21.1
5+
## 2.22.0
66

77
#### Added
88
- Support `runPostActionsOnFailure` for running build post scripts on failing build [#1075](https://github.com/yonaskolb/XcodeGen/pull/1075) @freddi-kit
@@ -12,7 +12,7 @@
1212
- Fixed scheme config variant lookups for some configs like `ProdDebug` and `Prod-Debug` that broke in 2.21.0 [#1070](https://github.com/yonaskolb/XcodeGen/pull/1070) @yonaskolb
1313
- Fixed Xcode alerting to project changes after regeneration [#1072](https://github.com/yonaskolb/XcodeGen/pull/1072) @yonaskolb
1414

15-
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.21.0...2.21.1)
15+
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.21.0...2.22.0)
1616

1717
## 2.21.0
1818

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.21.1
3+
VERSION = 2.22.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.21.1"),
116+
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.22.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.21.1")
6+
let version = Version("2.22.0")
77
let cli = XcodeGenCLI(version: version)
88
cli.execute()

0 commit comments

Comments
 (0)