diff --git a/Example/Podfile.lock b/Example/Podfile.lock index f71d665..267c5f9 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,9 +1,9 @@ PODS: - - Reusable (3.0.0): - - Reusable/Storyboard (= 3.0.0) - - Reusable/View (= 3.0.0) - - Reusable/Storyboard (3.0.0) - - Reusable/View (3.0.0) + - Reusable (3.0.1): + - Reusable/Storyboard (= 3.0.1) + - Reusable/View (= 3.0.1) + - Reusable/Storyboard (3.0.1) + - Reusable/View (3.0.1) DEPENDENCIES: - Reusable (from `../`) @@ -13,7 +13,7 @@ EXTERNAL SOURCES: :path: ../ SPEC CHECKSUMS: - Reusable: 90af83e6e49e8a209ec4db33ad523213b8310d1b + Reusable: c8cbbb8e5242b9e035258d893ae5ebd8ae1d9c70 PODFILE CHECKSUM: 396891106f5d114bc0d21fe52c4957aa880dd013 diff --git a/Example/Pods/Local Podspecs/Reusable.podspec.json b/Example/Pods/Local Podspecs/Reusable.podspec.json index 9882daa..ee257e1 100644 --- a/Example/Pods/Local Podspecs/Reusable.podspec.json +++ b/Example/Pods/Local Podspecs/Reusable.podspec.json @@ -1,6 +1,6 @@ { "name": "Reusable", - "version": "3.0.0", + "version": "3.0.1", "summary": "A Swift Mixin to deal with reusable UITableView & UICollectionView cells and XIB-based views", "description": "Reusable is a [Swift Mixin](http://alisoftware.github.io/swift/protocol/2015/11/08/mixins-over-inheritance/)\nto easily deal with your reusable UITableViewCell and UICollectionViewCell classes.\n\nSimply mark your `UITableViewCell` or `UICollectionViewCell` sublcasses as\nconforming to either `Reusable` or `NibReusable` and you'll be able to\nmanipulate them way easier, and without worrying with String-type reuseIdentifiers\never again, and instead use them in a type-safe manner!\n\nReusable also support marking any arbitrary `UIView` subclass as `NibLoadable` so that\nyou can then call `loadFromNib()` on the custom view class easily without adding any code.\n\nFor more info, see [my blog post](http://alisoftware.github.io/swift/generics/2016/01/06/generic-tableviewcells/)\nabout this technique.", "homepage": "https://github.com/AliSoftware/Reusable", @@ -18,7 +18,7 @@ }, "source": { "git": "https://github.com/AliSoftware/Reusable.git", - "tag": "3.0.0" + "tag": "3.0.1" }, "frameworks": "UIKit", "subspecs": [ diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index f71d665..267c5f9 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -1,9 +1,9 @@ PODS: - - Reusable (3.0.0): - - Reusable/Storyboard (= 3.0.0) - - Reusable/View (= 3.0.0) - - Reusable/Storyboard (3.0.0) - - Reusable/View (3.0.0) + - Reusable (3.0.1): + - Reusable/Storyboard (= 3.0.1) + - Reusable/View (= 3.0.1) + - Reusable/Storyboard (3.0.1) + - Reusable/View (3.0.1) DEPENDENCIES: - Reusable (from `../`) @@ -13,7 +13,7 @@ EXTERNAL SOURCES: :path: ../ SPEC CHECKSUMS: - Reusable: 90af83e6e49e8a209ec4db33ad523213b8310d1b + Reusable: c8cbbb8e5242b9e035258d893ae5ebd8ae1d9c70 PODFILE CHECKSUM: 396891106f5d114bc0d21fe52c4957aa880dd013 diff --git a/Example/Pods/Target Support Files/Reusable/Info.plist b/Example/Pods/Target Support Files/Reusable/Info.plist index 4522675..b0b461e 100644 --- a/Example/Pods/Target Support Files/Reusable/Info.plist +++ b/Example/Pods/Target Support Files/Reusable/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 3.0.0 + 3.0.1 CFBundleSignature ???? CFBundleVersion diff --git a/Reusable.podspec b/Reusable.podspec index 755d984..44ca84a 100644 --- a/Reusable.podspec +++ b/Reusable.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "Reusable" - s.version = "3.0.0" + s.version = "3.0.1" s.summary = "A Swift Mixin to deal with reusable UITableView & UICollectionView cells and XIB-based views" s.description = <<-DESC