mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2024-12-11 07:16:40 +03:00
Update to 2.14.0
This commit is contained in:
parent
bd7e0b7564
commit
1c242111b5
@ -2,8 +2,10 @@
|
||||
|
||||
## Next Version
|
||||
|
||||
## 2.14.0
|
||||
|
||||
#### Added
|
||||
- Support Swift Package Manager (Embed & Sign/Embed Without Signing) for dynamic packages. [#788](https://github.com/yonaskolb/XcodeGen/pull/788)
|
||||
- Add ability to embed and code sign Swift package dependencies with dynamic products. [#788](https://github.com/yonaskolb/XcodeGen/pull/788) @alexruperez
|
||||
|
||||
#### Fixed
|
||||
- Revert "Add Base to known regions even if one doesn't exist" [#791](https://github.com/yonaskolb/XcodeGen/pull/792) @bryansum
|
||||
@ -11,6 +13,8 @@
|
||||
- Set `TEST_TARGET_NAME` only when a project has UITest bundle. [#792](https://github.com/yonaskolb/XcodeGen/pull/792) @ken0nek
|
||||
- Set xcodeproj path in project.xcworkspace/contents.xcworkspacedata [#793](https://github.com/yonaskolb/XcodeGen/pull/793) @ken0nek
|
||||
|
||||
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.13.1...2.14.0)
|
||||
|
||||
## 2.13.1
|
||||
|
||||
#### Fixed
|
||||
|
2
Makefile
2
Makefile
@ -1,6 +1,6 @@
|
||||
TOOL_NAME = XcodeGen
|
||||
export EXECUTABLE_NAME = xcodegen
|
||||
VERSION = 2.13.1
|
||||
VERSION = 2.14.0
|
||||
|
||||
PREFIX = /usr/local
|
||||
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
|
||||
|
@ -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.13.1"),
|
||||
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.14.0"),
|
||||
```
|
||||
|
||||
And then import wherever needed: `import XcodeGenKit`
|
||||
|
@ -3,6 +3,6 @@ import ProjectSpec
|
||||
import XcodeGenCLI
|
||||
import Version
|
||||
|
||||
let version = Version("2.13.1")
|
||||
let version = Version("2.14.0")
|
||||
let cli = XcodeGenCLI(version: version)
|
||||
cli.execute()
|
||||
|
Loading…
Reference in New Issue
Block a user