Skip to content

Commit 01c6959

Browse files
committed
Update to 2.15.1
1 parent 5106f50 commit 01c6959

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,11 +2,15 @@
22

33
## Next Version
44

5+
## 2.15.1
6+
57
#### Fixed
68
- Fixed issue which caused watch app schemes to be generated incorrectly, preventing these apps from launching. [#798](https://github.com/yonaskolb/XcodeGen/pull/798) @daltonclaybrook
79
- Added build presets for the target type `framework.static`. [#819](https://github.com/yonaskolb/XcodeGen/pull/819) @acecilia
810
- Fixed XcodeProj resolution and updated to 7.10.0 [#822](https://github.com/yonaskolb/XcodeGen/pull/822) @soffes
911

12+
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.15.0...2.15.1)
13+
1014
## 2.15.0
1115

1216
#### 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.15.0
3+
VERSION = 2.15.1
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
@@ -107,7 +107,7 @@ swift run xcodegen
107107
Add the following to your Package.swift file's dependencies:
108108

109109
```swift
110-
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.15.0"),
110+
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.15.1"),
111111
```
112112

113113
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.15.0")
6+
let version = Version("2.15.1")
77
let cli = XcodeGenCLI(version: version)
88
cli.execute()

0 commit comments

Comments
 (0)