Skip to content

Commit

Permalink
Updated for 0.3.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklockwood committed Jun 20, 2017
1 parent 2acf5d0 commit 14d9ff5
Show file tree
Hide file tree
Showing 16 changed files with 32 additions and 25 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Change Log

## [0.3.2](https://github.schibsted.io/Rocket/layout/releases/tag/0.3.2) (2017-06-20)

- Reloading a nested LayoutViewController now reloads just the current controller, not the parent
- Fixed potential AutoLayout crash

## [0.3.1](https://github.schibsted.io/Rocket/layout/releases/tag/0.3.1) (2017-06-13)

- You can now reference nested state or constants dictionary keys using keypaths in expressions
Expand Down
2 changes: 1 addition & 1 deletion Layout.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Layout"
s.version = "0.3.1"
s.version = "0.3.2"
s.summary = "XML templates + expression-based layout system"

s.homepage = "https://github.schibsted.io/Rocket/layout/"
Expand Down
4 changes: 2 additions & 2 deletions Layout/Layout/LayoutViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ open class LayoutViewController: UIViewController {
return childViewControllers.isEmpty
}

open override func viewWillLayoutSubviews() {
super.viewWillLayoutSubviews()
open override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
do {
if let errorNode = _errorNode {
try errorNode.update()
Expand Down
4 changes: 2 additions & 2 deletions Layout/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- Expression (0.7.0)
- Layout (0.3.1):
- Layout (0.3.2):
- Expression (~> 0.7.0)

DEPENDENCIES:
Expand All @@ -12,7 +12,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
Expression: 58438d38e484a565be5ebc34e76f12f629132989
Layout: b5ab1da6e004e7536fdd077def9c9327dfd6a761
Layout: 3368b9651423273a7c18ebcdeec45f5e08ef9dde

PODFILE CHECKSUM: 7bc9b0e5723b353706f18c4f2e1588b9a49483d1

Expand Down
4 changes: 2 additions & 2 deletions Layout/Pods/Local Podspecs/Layout.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Layout/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Layout/Pods/Target Support Files/Layout/Info.plist

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions SampleApp/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- Expression (0.7.0)
- Layout (0.3.1):
- Layout (0.3.2):
- Expression (~> 0.7.0)
- Northstar (0.0.1):
- Layout
Expand All @@ -17,7 +17,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
Expression: 58438d38e484a565be5ebc34e76f12f629132989
Layout: b5ab1da6e004e7536fdd077def9c9327dfd6a761
Layout: 3368b9651423273a7c18ebcdeec45f5e08ef9dde
Northstar: eb1f7e140d4d5f4efcd6c8d6c7fc73a445fffb99

PODFILE CHECKSUM: f8215283a456a0d52cd21807f2f4678a24b1b693
Expand Down
4 changes: 2 additions & 2 deletions SampleApp/Pods/Local Podspecs/Layout.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions SampleApp/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion SampleApp/Pods/Target Support Files/Layout/Info.plist

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion SampleApp/SampleApp/Text.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

<UIScrollView
contentSize.height="auto + 20"
contentInset.top="max(topLayoutGuide.length + 10, 20)"
contentInset.bottom="bottomLayoutGuide.length"
scrollIndicatorInsets.bottom="bottomLayoutGuide.length">

<UILabel
top="max(topLayoutGuide.length + 10, 20)"
left="20"
text="Left-aligned bold text"
font="bold"
Expand Down
4 changes: 2 additions & 2 deletions UIDesigner/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- Expression (0.7.0)
- Layout (0.3.1):
- Layout (0.3.2):
- Expression (~> 0.7.0)

DEPENDENCIES:
Expand All @@ -12,7 +12,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
Expression: 58438d38e484a565be5ebc34e76f12f629132989
Layout: b5ab1da6e004e7536fdd077def9c9327dfd6a761
Layout: 3368b9651423273a7c18ebcdeec45f5e08ef9dde

PODFILE CHECKSUM: de763472315fa391cbc8751113c14e4ffd2dd3fe

Expand Down
4 changes: 2 additions & 2 deletions UIDesigner/Pods/Local Podspecs/Layout.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions UIDesigner/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion UIDesigner/Pods/Target Support Files/Layout/Info.plist

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 14d9ff5

Please sign in to comment.