mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2024-12-11 07:16:40 +03:00
Update to 2.8.0
This commit is contained in:
parent
1bd4afff6e
commit
73982c124f
@ -2,6 +2,8 @@
|
||||
|
||||
## Next Version
|
||||
|
||||
## 2.8.0
|
||||
|
||||
#### Added
|
||||
|
||||
- Added support for Swift Package dependencies [#624](https://github.com/yonaskolb/XcodeGen/pull/624) @yonaskolb
|
||||
@ -20,6 +22,8 @@
|
||||
- Removed needless `Array` initialization. [#661](https://github.com/yonaskolb/XcodeGen/pull/661) @RomanPodymov
|
||||
- Updated to XcodeProj 7.1.0 [#624](https://github.com/yonaskolb/XcodeGen/pull/624) @yonaskolb
|
||||
|
||||
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.7.0...2.8.0)
|
||||
|
||||
## 2.7.0
|
||||
|
||||
#### Added
|
||||
|
2
Makefile
2
Makefile
@ -1,6 +1,6 @@
|
||||
TOOL_NAME = XcodeGen
|
||||
export EXECUTABLE_NAME = xcodegen
|
||||
VERSION = 2.7.0
|
||||
VERSION = 2.8.0
|
||||
|
||||
PREFIX = /usr/local
|
||||
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
|
||||
|
@ -103,7 +103,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.7.0"),
|
||||
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.8.0"),
|
||||
```
|
||||
|
||||
And then import wherever needed: `import XcodeGenKit`
|
||||
|
@ -2,6 +2,6 @@ import Foundation
|
||||
import ProjectSpec
|
||||
import XcodeGenCLI
|
||||
|
||||
let version = Version("2.7.0")
|
||||
let version = Version("2.8.0")
|
||||
let cli = XcodeGenCLI(version: version)
|
||||
cli.execute()
|
||||
|
Loading…
Reference in New Issue
Block a user