Skip to content

Commit

Permalink
Merge pull request #189 from bustoutsolutions/release-1.1.1
Browse files Browse the repository at this point in the history
Release 1.1.1
  • Loading branch information
pcantrell authored Mar 28, 2017
2 parents 467b99f + cd2ac98 commit 1665db7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
github "Alamofire/Alamofire" "4.3.0"
github "Quick/Nimble" "v6.0.1"
github "Alamofire/Alamofire" "4.4.0"
github "Quick/Nimble" "v6.1.0"
github "pcantrell/Nocilla" "bd7ec7caa0576f08c00bbbf993a9204f93be16e3"
github "pcantrell/Quick" "1c2c4056049e52d25fc48171ab62ab9d33821b47"
6 changes: 3 additions & 3 deletions Examples/GithubBrowser/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- Siesta/Core (1.1.0)
- Siesta/UI (1.1.0):
- Siesta/Core (1.1.1)
- Siesta/UI (1.1.1):
- Siesta/Core
- SwiftyJSON (3.1.4)

Expand All @@ -13,7 +13,7 @@ EXTERNAL SOURCES:
:path: "../.."

SPEC CHECKSUMS:
Siesta: 44209f906276125106ea37f16f1f37019856e514
Siesta: 7ca19669c09d36d430872469692e4878acb8a638
SwiftyJSON: c2842d878f95482ffceec5709abc3d05680c0220

PODFILE CHECKSUM: 185541f66e3c53d1269ded59a72f9c99e6a2d105
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class RepositoryViewController: UIViewController, ResourceObserver {
starButton?.isEnabled = false
let rotation = CABasicAnimation(keyPath: "transform.rotation.z")
rotation.fromValue = 0
rotation.toValue = 2 * M_PI
rotation.toValue = 2 * Double.pi
rotation.duration = 1.6
rotation.repeatCount = Float.infinity
starIcon?.layer.add(rotation, forKey: "loadingIndicator")
Expand All @@ -171,7 +171,7 @@ class RepositoryViewController: UIViewController, ResourceObserver {
@objc private func stopStarRequestAnimation() {
starButton?.isEnabled = true
let stopRotation = CASpringAnimation(keyPath: "transform.rotation.z")
stopRotation.toValue = -M_PI * 2 / 5
stopRotation.toValue = -Double.pi * 2 / 5
stopRotation.damping = 6
stopRotation.duration = stopRotation.settlingDuration
starIcon?.layer.add(stopRotation, forKey: "loadingIndicator")
Expand Down
4 changes: 2 additions & 2 deletions Siesta.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "Siesta"
s.version = "1.1.0"
s.version = "1.1.1"
s.summary = "Swift REST client library"

s.description = <<-DESC
Expand Down Expand Up @@ -69,7 +69,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.11"

s.source = { :git => "https://github.com/bustoutsolutions/siesta.git", :tag => "1.1.0" }
s.source = { :git => "https://github.com/bustoutsolutions/siesta.git", :tag => "1.1.1" }

s.subspec "Core" do |s|
s.source_files = "Source/Siesta/**/*"
Expand Down

0 comments on commit 1665db7

Please sign in to comment.