Skip to content
This repository has been archived by the owner on Jun 8, 2022. It is now read-only.

Commit

Permalink
deploy targets
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Warner committed Feb 12, 2019
1 parent 8b0599f commit 6320377
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions ChainableAnimations.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.1.0</string>
<string>0.1.1</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ Download `https://github.com/DomainGroupOSS/swift-chainable-animations/blob/mast
### Carthage

```
git "[email protected]: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
Expand Down Expand Up @@ -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) {
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion SwiftChainableAnimations.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"


Expand Down

0 comments on commit 6320377

Please sign in to comment.