Skip to content

Commit

Permalink
Update to Alamofire 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Pearl committed Dec 17, 2015
1 parent cd9d8ca commit d5f2389
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pod setup
platform :ios, '8.0'
use_frameworks!

pod 'SwiftyDropbox', '~> 2.0.1'
pod 'SwiftyDropbox', '~> 2.0.2'
```
1. From the project directory, install the SwiftyDropbox SDK with:
```
Expand Down
2 changes: 1 addition & 1 deletion Source/DropboxClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Alamofire
/// The client for the API. Call routes using the namespaces inside this object.
public class DropboxClient : BabelClient {
let accessToken : DropboxAccessToken
static var version = "2.0.1"
static var version = "2.0.2"

/// Shared instance for convenience
public static var sharedClient : DropboxClient!
Expand Down
6 changes: 3 additions & 3 deletions SwiftyDropbox.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Pod::Spec.new do |s|
s.name = "SwiftyDropbox"
s.version = "2.0.1"
s.version = "2.0.2"
s.summary = "Dropbox Swift SDK for APIv2"
s.homepage = "https://dropbox.com/developers/"
s.license = "MIT"
s.author = { "Ryan Pearl" => "rpearl@dropbox.com" }
s.source = { :git => "https://github.com/dropbox/SwiftyDropbox.git", :tag => "2.0.1" }
s.source = { :git => "https://github.com/dropbox/SwiftyDropbox.git", :tag => "2.0.2" }
s.source_files = "Source/*.{h,m,swift}"
s.requires_arc = true
s.ios.deployment_target = "8.0"
s.dependency "Alamofire", "~> 2.0.2"
s.dependency "Alamofire", "~> 3.0.0"
end

0 comments on commit d5f2389

Please sign in to comment.