diff --git a/Frameworks/SupportingFiles/Info.plist b/Frameworks/SupportingFiles/Info.plist index 131e3ce..da72541 100644 --- a/Frameworks/SupportingFiles/Info.plist +++ b/Frameworks/SupportingFiles/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.9.0 + 1.9.1 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/HandyUIKit.podspec b/HandyUIKit.podspec index b2fc02d..c55d1aa 100644 --- a/HandyUIKit.podspec +++ b/HandyUIKit.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "HandyUIKit" - s.version = "1.9.0" + s.version = "1.9.1" s.summary = "Handy UI features that should have been part of UIKit in the first place." s.description = <<-DESC diff --git a/Package.swift b/Package.swift index 2d67f7f..5086a0d 100644 --- a/Package.swift +++ b/Package.swift @@ -17,6 +17,5 @@ let package = Package( dependencies: ["HandyUIKit"], exclude: ["Tests/SupportingFiles"] ) - ], - swiftLanguageVersions: [4_2] + ] ) diff --git a/README.md b/README.md index 6379957..7ede015 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ alt="Build Status"> alt="codebeat badge"> - + Swift: 4.2 @@ -317,7 +317,7 @@ By default `NibLoadable` will search for a file named like your type, for exampl Your view must be set as the `Files owner` within the XIB file, also there must be only one root `UIView` object (which should just be of type `UIView`, not your subclass). -Now you can add `IBOutlets` and `IBActions` to your subclass and connect them within the XIB file to the `Files owner`. +Now you can add `IBOutlets` and `IBActions` to your subclass and connect them within the XIB file to the `Files owner`. In order to make loading work from both code and Storyboards, call `loadFromNib()` from within your init methods like so: