diff --git a/Examples/GithubBrowser/Podfile.lock b/Examples/GithubBrowser/Podfile.lock index 157bb260..7c52d4b2 100644 --- a/Examples/GithubBrowser/Podfile.lock +++ b/Examples/GithubBrowser/Podfile.lock @@ -1,6 +1,6 @@ PODS: - - Siesta/Core (1.0-rc.1) - - Siesta/UI (1.0-rc.1): + - Siesta/Core (1.0-rc.2) + - Siesta/UI (1.0-rc.2): - Siesta/Core - SwiftyJSON (2.3.2) @@ -21,7 +21,7 @@ CHECKOUT OPTIONS: :git: https://github.com/BaiduHiDeviOS/SwiftyJSON.git SPEC CHECKSUMS: - Siesta: 2565851ce35b78507a1b26df68e82e576eb71c6c + Siesta: 2aec41285f1cb1e875389846ba2fc298c2e5d761 SwiftyJSON: 6118fb49d7519c4d31a0c1f3d5af936e9047b556 PODFILE CHECKSUM: 1be9d814355a48187727c0a77f4837db1c72fa65 diff --git a/README.md b/README.md index adb64e24..404ac7f8 100644 --- a/README.md +++ b/README.md @@ -126,17 +126,17 @@ Siesta requires Swift 3, so make sure you have [Xcode 8](https://developer.apple In your `Podfile`: - pod 'Siesta', '>=1.0-rc.1' + pod 'Siesta', '>=1.0-rc.2' (If you use `>=`, make sure CocoaPods downloads the right version. Due to a [bug in CocoaPods](https://github.com/CocoaPods/CocoaPods/issues/5718) fixed only recently, it does not work properly with prerelease version numbers.) If you want to use the UI helpers: - pod 'Siesta/UI', '>=1.0-rc.1' + pod 'Siesta/UI', '>=1.0-rc.2' If you want to use Alamofire as your networking provider instead of `NSURLSession`: - pod 'Siesta/Alamofire', '>=1.0-rc.1' + pod 'Siesta/Alamofire', '>=1.0-rc.2' (You’ll also need to pass an `Alamofire.Manager` when you configure your `Siesta.Service`. See the [API docs](http://bustoutsolutions.github.io/siesta/api/Classes/Service.html#/s:FC6Siesta7ServicecFMS0_FT4baseGSqSS_22useDefaultTransformersSb18networkingProviderPS_18NetworkingProvider__S0_) for more info.) @@ -144,7 +144,7 @@ If you want to use Alamofire as your networking provider instead of `NSURLSessio In your `Cartfile`: - github "bustoutsolutions/siesta" "1.0-rc.1" + github "bustoutsolutions/siesta" "1.0-rc.2" Follow the [Carthage instructions](https://github.com/Carthage/Carthage#adding-frameworks-to-an-application) to add `Siesta.framework` to your project. If you want to use the UI helpers, you will also need to add `SiestaUI.framework` to your project as well. diff --git a/Siesta.podspec b/Siesta.podspec index e8b4def0..9dbc1ce2 100644 --- a/Siesta.podspec +++ b/Siesta.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "Siesta" - s.version = "1.0-rc.1" + s.version = "1.0-rc.2" s.summary = "Swift REST client library" s.description = <<-DESC @@ -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.0-rc.1" } + s.source = { :git => "https://github.com/bustoutsolutions/siesta.git", :tag => "1.0-rc.2" } s.subspec "Core" do |s| s.source_files = "Source/Siesta/**/*"