Skip to content

Commit 10e1483

Browse files
committed
Make Layoutable public.
1 parent d1fdc7e commit 10e1483

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CoreLayout/Layoutable.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
import Foundation
1010

11-
protocol Layoutable {
11+
public protocol Layoutable {
1212
func apply(layout: ComputedLayout, offset: CGPoint)
1313
}

CoreLayout/View+Layoutable.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import Foundation
1717
#endif
1818

1919
extension CoreLayoutViewType : Layoutable {
20-
func apply(layout: ComputedLayout, offset: CGPoint = .zero) {
20+
public func apply(layout: ComputedLayout, offset: CGPoint = .zero) {
2121
let layoutFrame = layout.frame.offsetBy(dx: offset.x, dy: offset.y)
2222

2323
let childOffset = CGPoint.zero

CoreLayout/infrastructure/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>0.0.2</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

0 commit comments

Comments
 (0)