Skip to content

Commit

Permalink
Updated for 0.6.15 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklockwood committed Jan 19, 2018
1 parent 24a668b commit 51e29b3
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Change Log

## [0.6.15](https://github.com/schibsted/layout/releases/tag/0.6.15) (2018-01-19)

- Fixed bug where safe area insets would not be updated correctly in some cases
- Duplicate instances of the same view or view controller in a LayoutNode hierarchy will now throw an error
- Duplicate outlet names in a LayoutNode hierarchy will now throw an error

## [0.6.14](https://github.com/schibsted/layout/releases/tag/0.6.14) (2018-01-11)

- Fixed longstanding bug where reloading failed to remove the old layout views/controllers from the hierarchy
Expand Down
2 changes: 1 addition & 1 deletion EditorExtension/Application/Info.plist
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.6.14</string>
<string>0.6.15</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>LSMinimumSystemVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion EditorExtension/Extension/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
<string>0.6.14</string>
<string>0.6.15</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>LSMinimumSystemVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions Layout.podspec.json
@@ -1,6 +1,6 @@
{
"name": "Layout",
"version": "0.6.14",
"version": "0.6.15",
"license": {
"type": "MIT",
"file": "LICENSE.md"
Expand All @@ -10,7 +10,7 @@
"authors": "Nick Lockwood",
"source": {
"git": "https://github.com/schibsted/layout.git",
"tag": "0.6.14"
"tag": "0.6.15"
},
"default_subspecs": "Core",
"subspecs": [
Expand Down
2 changes: 1 addition & 1 deletion Layout/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.6.14</string>
<string>0.6.15</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
4 changes: 2 additions & 2 deletions Layout/LayoutNode.swift
Expand Up @@ -2577,8 +2577,8 @@ public class LayoutNode: NSObject {
for (name, type) in viewExpressionTypes where expressions[name] == nil {
guard case .protocol = type.type, type.matches(owner),
name == "delegate" || name == "dataSource" ||
name.hasSuffix("Delegate") || name.hasSuffix("DataSource") else {
continue
name.hasSuffix("Delegate") || name.hasSuffix("DataSource") else {
continue
}
try LayoutError.wrap({
try self._view?.setValue(owner, forExpression: name)
Expand Down
2 changes: 1 addition & 1 deletion LayoutTool/main.swift
Expand Up @@ -3,7 +3,7 @@
import Foundation

/// The current LayoutTool version
let version = "0.6.14"
let version = "0.6.15"

extension String {
var inDefault: String { return "\u{001B}[39m\(self)" }
Expand Down

0 comments on commit 51e29b3

Please sign in to comment.