Skip to content

Commit

Permalink
1.0-beta.9
Browse files Browse the repository at this point in the history
  • Loading branch information
pcantrell committed Aug 15, 2016
1 parent a0f8225 commit c8a3f7b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Examples/GithubBrowser/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- Siesta (1.0-beta.8):
- Siesta/Core (= 1.0-beta.8)
- Siesta/Core (1.0-beta.8)
- Siesta (1.0-beta.9):
- Siesta/Core (= 1.0-beta.9)
- Siesta/Core (1.0-beta.9)
- SwiftyJSON (2.3.2)

DEPENDENCIES:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ Siesta requires Swift 2.0, so make sure you have [Xcode 7](https://developer.app

In your `Podfile`:

pod 'Siesta', '1.0-beta.8a'
pod 'Siesta', '1.0-beta.9'

(Beta 8a contains a pod-only patch. Do not use `>=`. Due to a [bug in CocoaPods](https://github.com/CocoaPods/CocoaPods/issues/5718), it does not work properly with prerelease version numbers and may pick up the wrong version.)
(If you use `>=`, make sure CocoaPods downloads the right version. Due to a [bug in CocoaPods](https://github.com/CocoaPods/CocoaPods/issues/5718), it does not work properly with prerelease version numbers and may pick up the wrong version.)

If you want to use Alamofire as your networking provider instead of `NSURLSession`:

Expand All @@ -140,7 +140,7 @@ If you want to use Alamofire as your networking provider instead of `NSURLSessio

In your `Cartfile`:

github "bustoutsolutions/siesta" "1.0-beta.8"
github "bustoutsolutions/siesta" "1.0-beta.9"

Follow the [Carthage instructions](https://github.com/Carthage/Carthage#adding-frameworks-to-an-application) to add `Siesta.framework` to your project.

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.0-beta.8"
s.version = "1.0-beta.9"
s.summary = "Swift REST client library"

s.description = <<-DESC
Expand Down Expand Up @@ -70,7 +70,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-beta.8" }
s.source = { :git => "https://github.com/bustoutsolutions/siesta.git", :tag => "1.0-beta.9" }

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

0 comments on commit c8a3f7b

Please sign in to comment.