Skip to content

Commit

Permalink
Update to 1.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yonaskolb committed Jul 4, 2018
1 parent bd78023 commit 9e0a9fc
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,23 @@

## Master

## 1.10.1

#### Fixed
- Fixed `transitivelyLinkDependencies` typo [332](https://github.com/yonaskolb/XcodeGen/pull/332) @brentleyjones
- Fixed framework target dependencies not being code signed by default [332](https://github.com/yonaskolb/XcodeGen/pull/332) @yonaskolb

### Changed
- Code sign all dependencies by default except target executables [332](https://github.com/yonaskolb/XcodeGen/pull/332) @yonaskolb

[Commits](https://github.com/yonaskolb/XcodeGen/compare/1.10.0...1.10.1)

## 1.10.0

#### Added
- Added build rule support [306](https://github.com/yonaskolb/XcodeGen/pull/306) @yonaskolb
- Added support for frameworks in sources [308](https://github.com/yonaskolb/XcodeGen/pull/308) @keith
- Added ability to automatically embed transient dependencies. Controlled with `transientlyLinkDependencies` [327](https://github.com/yonaskolb/XcodeGen/pull/327) @brentleyjones
- Added ability to automatically embed transient dependencies. Controlled with `transitivelyLinkDependencies` [327](https://github.com/yonaskolb/XcodeGen/pull/327) @brentleyjones

#### Changed
- Upgraded to Swift 4.1
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 = 1.10.0
VERSION = 1.10.1

PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
Expand Down
2 changes: 1 addition & 1 deletion Sources/XcodeGen/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import ProjectSpec
import XcodeGenKit
import xcproj

let version = "1.10.0"
let version = "1.10.1"

func generate(spec: String, project: String, isQuiet: Bool, justVersion: Bool) {
if justVersion {
Expand Down
2 changes: 0 additions & 2 deletions Sources/XcodeGenKit/PBXProjGenerator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -396,8 +396,6 @@ public class PBXProjGenerator {

for dependency in targetDependencies {



let embed = dependency.embed ?? target.shouldEmbedDependencies

func getEmbedSettings(codeSign: Bool) -> [String: Any] {
Expand Down

0 comments on commit 9e0a9fc

Please sign in to comment.