diff --git a/CHANGELOG.md b/CHANGELOG.md index 83480911..9e45e0b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # Changelog +* **0.9.1** Fixes Carthage support * **0.9.0** Swift 4.2 support * **0.8.1** Added shadow appearance properties * **0.8.0** Separated tap and pan gesture dismissal diff --git a/Example/Podfile.lock b/Example/Podfile.lock index a4d3d959..6659a961 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -6,7 +6,7 @@ PODS: - FBSnapshotTestCase/SwiftSupport (2.1.4): - FBSnapshotTestCase/Core - Nimble (7.3.1) - - PopupDialog (0.9.0): + - PopupDialog (0.9.1): - DynamicBlurView (~> 3.0.1) - SwiftLint (0.27.0) @@ -31,7 +31,7 @@ SPEC CHECKSUMS: DynamicBlurView: b1df5415f9bd31897549e5d7077e5ec120a4d636 FBSnapshotTestCase: 094f9f314decbabe373b87cc339bea235a63e07a Nimble: 04f732da099ea4d153122aec8c2a88fd0c7219ae - PopupDialog: d0eb441a6a0a84b054456ddf6ecc3fd3d2a6f332 + PopupDialog: 2e2b7dcde4bd6d6ef62a8b6f4ea02c7fea2710cd SwiftLint: 3207c1faa2240bf8973b191820a116113cd11073 PODFILE CHECKSUM: 2d0166d1e20a1e39377fb316142d39a3785d58f2 diff --git a/Example/Pods/Local Podspecs/PopupDialog.podspec.json b/Example/Pods/Local Podspecs/PopupDialog.podspec.json index b2fbd71c..3fa46c8e 100644 --- a/Example/Pods/Local Podspecs/PopupDialog.podspec.json +++ b/Example/Pods/Local Podspecs/PopupDialog.podspec.json @@ -1,6 +1,6 @@ { "name": "PopupDialog", - "version": "0.9.0", + "version": "0.9.1", "summary": "A simple custom popup dialog view controller", "homepage": "https://github.com/orderella/PopupDialog", "license": { @@ -12,7 +12,7 @@ }, "source": { "git": "https://github.com/orderella/PopupDialog.git", - "tag": "0.9.0" + "tag": "0.9.1" }, "social_media_url": "https://twitter.com/theMWFire", "platforms": { diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index a4d3d959..6659a961 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -6,7 +6,7 @@ PODS: - FBSnapshotTestCase/SwiftSupport (2.1.4): - FBSnapshotTestCase/Core - Nimble (7.3.1) - - PopupDialog (0.9.0): + - PopupDialog (0.9.1): - DynamicBlurView (~> 3.0.1) - SwiftLint (0.27.0) @@ -31,7 +31,7 @@ SPEC CHECKSUMS: DynamicBlurView: b1df5415f9bd31897549e5d7077e5ec120a4d636 FBSnapshotTestCase: 094f9f314decbabe373b87cc339bea235a63e07a Nimble: 04f732da099ea4d153122aec8c2a88fd0c7219ae - PopupDialog: d0eb441a6a0a84b054456ddf6ecc3fd3d2a6f332 + PopupDialog: 2e2b7dcde4bd6d6ef62a8b6f4ea02c7fea2710cd SwiftLint: 3207c1faa2240bf8973b191820a116113cd11073 PODFILE CHECKSUM: 2d0166d1e20a1e39377fb316142d39a3785d58f2 diff --git a/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/PopupDialog.xcscheme b/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/PopupDialog.xcscheme new file mode 100644 index 00000000..0bddef86 --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/PopupDialog.xcscheme @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/Pods/Target Support Files/PopupDialog/Info.plist b/Example/Pods/Target Support Files/PopupDialog/Info.plist index b07fa9b4..5d80a394 100644 --- a/Example/Pods/Target Support Files/PopupDialog/Info.plist +++ b/Example/Pods/Target Support Files/PopupDialog/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.9.0 + 0.9.1 CFBundleSignature ???? CFBundleVersion diff --git a/PopupDialog.podspec b/PopupDialog.podspec index 0cb29cf2..0a70a17d 100644 --- a/PopupDialog.podspec +++ b/PopupDialog.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'PopupDialog' - s.version = '0.9.0' + s.version = '0.9.1' s.summary = 'A simple custom popup dialog view controller' s.homepage = 'https://github.com/orderella/PopupDialog' s.license = { :type => 'MIT', :file => 'LICENSE' } diff --git a/README.md b/README.md index 4849852d..b165e834 100644 --- a/README.md +++ b/README.md @@ -446,6 +446,7 @@ Minimum requirement is iOS 9.0. This dialog was written with Swift 4, for suppor

 

# Changelog +* **0.9.1** Fixes Carthage support * **0.9.0** Swift 4.2 support * **0.8.1** Added shadow appearance properties * **0.8.0** Separated tap and pan gesture dismissal