diff --git a/ChainableAnimations.xcodeproj/project.pbxproj b/ChainableAnimations.xcodeproj/project.pbxproj index 45377b4..a834d67 100644 --- a/ChainableAnimations.xcodeproj/project.pbxproj +++ b/ChainableAnimations.xcodeproj/project.pbxproj @@ -355,6 +355,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = "$(SRCROOT)/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -381,6 +382,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = "$(SRCROOT)/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", diff --git a/Info.plist b/Info.plist index 64db690..c4c0306 100644 --- a/Info.plist +++ b/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.1.0 + 0.1.1 CFBundleVersion $(CURRENT_PROJECT_VERSION) diff --git a/README.md b/README.md index 4b5f5f2..93e72bc 100644 --- a/README.md +++ b/README.md @@ -16,13 +16,13 @@ Download `https://github.com/DomainGroupOSS/swift-chainable-animations/blob/mast ### Carthage ``` -git "git@github.com:DomainGroupOSS/swift-chainable-animations.git" "0.1.0" +git "DomainGroupOSS/swift-chainable-animations" "0.1.1" ``` ### Cocoapods ``` -pod "SwiftChainableAnimations", "0.1.0" +pod "SwiftChainableAnimations", "0.1.1" ``` ### Swift Package Manager @@ -51,6 +51,8 @@ UIView.animate(withDuration: 0.15, delay: 0.0, options: .curveEaseIn, animations ### After ```swift +import ChainableAnimations + UIView.prepareAnimation(withDuration: 0.15, options: .curveEaseIn) { self.titleImageView.transform = CGAffineTransform(scaleX: 1.2, y: 1.2) }.then(withDuration: 0.4, options: .curveEaseOut) { @@ -69,6 +71,8 @@ UIView.animate(withDuration: stageDuration, delay: 0, options: .curveEaseIn, ani ### After ```swift +import ChainableAnimations + UIView .prepareAnimation(withDuration: stageDuration, delay: 0, options: .curveEaseIn, animations: stageOne) .then(withDuration: stageDuration, delay: 0, options: .curveEaseIn, animations: stageTwo) diff --git a/SwiftChainableAnimations.podspec b/SwiftChainableAnimations.podspec index 3639fdf..cb79273 100644 --- a/SwiftChainableAnimations.podspec +++ b/SwiftChainableAnimations.podspec @@ -62,7 +62,7 @@ Pod::Spec.new do |s| # the deployment target. You can optionally include the target after the platform. # - s.platform = :ios, "12.0" + s.platform = :ios, "8.0" s.swift_version = "4.2"