Skip to content

Commit 1c24211

Browse files
committed
Update to 2.14.0
1 parent bd7e0b7 commit 1c24211

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,19 @@
22

33
## Next Version
44

5+
## 2.14.0
6+
57
#### Added
6-
- Support Swift Package Manager (Embed & Sign/Embed Without Signing) for dynamic packages. [#788](https://github.com/yonaskolb/XcodeGen/pull/788)
8+
- Add ability to embed and code sign Swift package dependencies with dynamic products. [#788](https://github.com/yonaskolb/XcodeGen/pull/788) @alexruperez
79

810
#### Fixed
911
- Revert "Add Base to known regions even if one doesn't exist" [#791](https://github.com/yonaskolb/XcodeGen/pull/792) @bryansum
1012
- Set `defaultConfigurationName` for every target which is defined in a project. [#787](https://github.com/yonaskolb/XcodeGen/pull/787) @ken0nek
1113
- Set `TEST_TARGET_NAME` only when a project has UITest bundle. [#792](https://github.com/yonaskolb/XcodeGen/pull/792) @ken0nek
1214
- Set xcodeproj path in project.xcworkspace/contents.xcworkspacedata [#793](https://github.com/yonaskolb/XcodeGen/pull/793) @ken0nek
1315

16+
[Commits](https://github.com/yonaskolb/XcodeGen/compare/2.13.1...2.14.0)
17+
1418
## 2.13.1
1519

1620
#### Fixed

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

0 commit comments

Comments
 (0)