Skip to content

Commit 39ee9c2

Browse files
committedMay 23, 2021
Update to 2.23.1
1 parent 90bcaff commit 39ee9c2

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed
 

‎CHANGELOG.md

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

33
## Next Version
44

5+
## 2.23.1
6+
7+
### Changed
8+
- Reverted "Change FRAMEWORK_SEARCH_PATH for xcframeworks (#1015)", introduced in 2.20.0. XCFrameworks need to be
9+
referenced directly in the project for Xcode's build system to extract the appropriate frameworks [#1081](https://github.com/yonaskolb/XcodeGen/pull/1081) @elliottwilliams
10+
11+
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.23.0...2.23.1)
12+
513
## 2.23.0
614

715
#### Added
@@ -10,8 +18,6 @@
1018
#### Fixed
1119
- Added `()` to config variant trimming charater set to fix scheme config variant lookups for some configs like `Debug (Development)` that broke in 2.22.0 [#1078](https://github.com/yonaskolb/XcodeGen/pull/1078) @DavidWoohyunLee
1220
- Fixed Linux builds on Swift 5.4 [#1083](https://github.com/yonaskolb/XcodeGen/pull/1083) @yonaskolb
13-
- Reverted "Change FRAMEWORK_SEARCH_PATH for xcframeworks (#1015)", introduced in 2.20.0. XCFrameworks need to be
14-
referenced directly in the project for Xcode's build system to extract the appropriate frameworks [#1081](https://github.com/yonaskolb/XcodeGen/pull/1081) @elliottwilliams
1521

1622
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.22.0...2.23.0)
1723

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

0 commit comments

Comments
 (0)
Please sign in to comment.