Skip to content

Commit

Permalink
Update to 2.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yonaskolb committed Apr 2, 2020
1 parent 5106f50 commit 01c6959
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@

## Next Version

## 2.15.1

#### Fixed
- 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
- Added build presets for the target type `framework.static`. [#819](https://github.com/yonaskolb/XcodeGen/pull/819) @acecilia
- Fixed XcodeProj resolution and updated to 7.10.0 [#822](https://github.com/yonaskolb/XcodeGen/pull/822) @soffes

[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.15.0...2.15.1)

## 2.15.0

#### Added
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen
VERSION = 2.15.0
VERSION = 2.15.1

PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ swift run xcodegen
Add the following to your Package.swift file's dependencies:

```swift
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.15.0"),
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.15.1"),
```

And then import wherever needed: `import XcodeGenKit`
Expand Down
2 changes: 1 addition & 1 deletion Sources/XcodeGen/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import ProjectSpec
import XcodeGenCLI
import Version

let version = Version("2.15.0")
let version = Version("2.15.1")
let cli = XcodeGenCLI(version: version)
cli.execute()

0 comments on commit 01c6959

Please sign in to comment.