Skip to content

Commit

Permalink
Updated for 0.6.21 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklockwood committed Apr 5, 2018
1 parent 9ddf94d commit bb12b5c
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [0.6.21](https://github.com/schibsted/layout/releases/tag/0.6.21) (2018-04-05)

- Added `<children/>` tag for specifying insertion point for children inside nested template files (see README for details)

## [0.6.20](https://github.com/schibsted/layout/releases/tag/0.6.20) (2018-04-04)

- Fixed `UITableViewCell` layout bug
Expand Down
2 changes: 1 addition & 1 deletion EditorExtension/Application/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.6.20</string>
<string>0.6.21</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>LSMinimumSystemVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion EditorExtension/Extension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
<string>0.6.20</string>
<string>0.6.21</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>LSMinimumSystemVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion EditorExtension/Layout for Xcode.app/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.6.19</string>
<string>0.6.21</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
<string>0.6.19</string>
<string>0.6.21</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
<dict>
<key>cdhash</key>
<data>
AGEC82UkQKNkuhQp/dwPIab2X+s=
B5SRAq0hw96+0p5YuvbpdPvaHjg=
</data>
<key>requirement</key>
<string>identifier "com.schibsted.Layout-for-Xcode.SourceEditorExtension" and anchor apple generic and certificate leaf[subject.CN] = "Mac Developer: Nick Lockwood (XDQ4XJZXHD)" and certificate 1[field.1.2.840.113635.100.6.2.1] /* exists */</string>
Expand Down
4 changes: 2 additions & 2 deletions Layout.podspec.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Layout",
"version": "0.6.20",
"version": "0.6.21",
"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.20"
"tag": "0.6.21"
},
"default_subspecs": "Core",
"subspecs": [
Expand Down
2 changes: 1 addition & 1 deletion Layout/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.6.20</string>
<string>0.6.21</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
Binary file modified LayoutTool/LayoutTool
Binary file not shown.
2 changes: 1 addition & 1 deletion LayoutTool/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import Foundation

/// The current LayoutTool version
let version = "0.6.20"
let version = "0.6.21"

extension String {
var inDefault: String { return "\u{001B}[39m\(self)" }
Expand Down
1 change: 1 addition & 0 deletions SampleApp/PageTemplate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@
textColor="white"
width="100%"
/>
<children/>
</UIView>

0 comments on commit bb12b5c

Please sign in to comment.