diff --git a/Source/Info.plist b/Source/Info.plist
index f69838d..a8e75cc 100644
--- a/Source/Info.plist
+++ b/Source/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.1.0
+ 2.1.1
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/Source/Views/CircleView.swift b/Source/Views/CircleView.swift
index 498123b..7675b19 100644
--- a/Source/Views/CircleView.swift
+++ b/Source/Views/CircleView.swift
@@ -24,6 +24,7 @@
import UIKit
/// A custom view where the layers corner radius tries to make a circle
+@IBDesignable
class CircleView: UIView {
override func layoutSubviews() {
@@ -33,6 +34,7 @@ class CircleView: UIView {
}
/// A custom image view where the layers corner radius tries to make a circle
+@IBDesignable
class CircleImageView: UIImageView {
override func layoutSubviews() {
diff --git a/Squidward.podspec b/Squidward.podspec
index c87b436..a1afe30 100644
--- a/Squidward.podspec
+++ b/Squidward.podspec
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = "Squidward"
- s.version = "2.1.0"
- s.summary = "Squidward is an iOS framework that reduces the plumbing of working with UIKit"
+ s.version = "2.1.1"
+ s.summary = "Squidward is an iOS framework that reduces the plumbing of working with UIKit."
s.homepage = "https://github.com/QuarkWorks/Squidward"
s.license = "MIT"
s.author = "QuarkWorks"
s.platform = :ios, "9.0"
- s.source = { :git => "https://github.com/QuarkWorks/Squidward.git", :tag => "2.1.0" }
+ s.source = { :git => "https://github.com/QuarkWorks/Squidward.git", :tag => "2.1.1" }
s.source_files = "Squidward", "Source/**/*.{h,m,swift}"
end