Skip to content

Commit 69b93ef

Browse files
committed
Update example app and bump versions
1 parent 2e75718 commit 69b93ef

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

ManualLayout.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'ManualLayout'
3-
s.version = '1.0.0'
3+
s.version = '1.1.0'
44
s.license = { :type => 'MIT', :file => 'LICENSE' }
55
s.summary = 'Easy to use and flexible AutoLayout alternative for iOS 8+. Supports AsyncDisplayKit.'
66

ManualLayout/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0.0</string>
18+
<string>1.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>$(CURRENT_PROJECT_VERSION)</string>
22+
<string>9</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

SimpleExample/ExampleViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ internal final class ExampleViewController: UIViewController {
1414
let subtitleLabel = UILabel(frame: CGRectZero)
1515
let yinView = UIView(frame: CGRectZero)
1616

17-
override init() {
17+
init() {
1818
super.init(nibName: nil, bundle: nil)
1919
titleLabel.attributedText = NSAttributedString(
2020
string: "Hello World!",
@@ -51,7 +51,7 @@ internal final class ExampleViewController: UIViewController {
5151
yinView.bottom2 = bottom
5252
}
5353

54-
private func generateTextStyle(smaller: Bool = false) -> [NSObject: AnyObject] {
54+
private func generateTextStyle(smaller smaller: Bool = false) -> [String: AnyObject] {
5555
return [
5656
NSFontAttributeName: UIFont.systemFontOfSize(smaller ? 14 : 18),
5757
NSForegroundColorAttributeName: UIColor.blackColor()

SimpleExample/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.1.0</string>
18+
<string>1.1.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>2</string>
22+
<string>3</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true/>
2525
<key>UILaunchStoryboardName</key>

0 commit comments

Comments
 (0)