Skip to content

Commit

Permalink
Merge pull request #149 from bustoutsolutions/1.0.1
Browse files Browse the repository at this point in the history
1.0.1
  • Loading branch information
pcantrell authored Nov 18, 2016
2 parents 1379a6d + dbed8c0 commit 5eb05a1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
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.0.0)
- Siesta/UI (1.0.0):
- Siesta/Core (1.0.1)
- Siesta/UI (1.0.1):
- Siesta/Core
- SwiftyJSON (3.1.1)

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

SPEC CHECKSUMS:
Siesta: f69233ef3446da71a47af678354da386fabf0934
Siesta: ea9de37bc34a6fc3906479f3f9a317307332a0d7
SwiftyJSON: f0be2e604f83e8405a624e9f891898bf6ed4e019

PODFILE CHECKSUM: 185541f66e3c53d1269ded59a72f9c99e6a2d105
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,23 +124,23 @@ Siesta requires Swift 3, so make sure you have [Xcode 8](https://developer.apple

In your `Podfile`:

pod 'Siesta', '>=1.0.0'
pod 'Siesta', '>=1.0.1'

If you want to use the UI helpers:

pod 'Siesta/UI', '>=1.0.0'
pod 'Siesta/UI', '>=1.0.1'

If you want to use Alamofire as your networking provider instead of Foundation’s `URLSession`:

pod 'Siesta/Alamofire', '>=1.0.0'
pod 'Siesta/Alamofire', '>=1.0.1'

(You’ll also need to pass an `Alamofire.Manager` when you configure your `Siesta.Service`. See the [API docs](https://bustoutsolutions.github.io/siesta/api/Classes/Service.html#//apple_ref/swift/Method/init(baseURL:useDefaultTransformers:networking:)) for more info.)

### Carthage

In your `Cartfile`:

github "bustoutsolutions/siesta" "1.0.0"
github "bustoutsolutions/siesta" "1.0.1"

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.

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.0"
s.version = "1.0.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.0.0" }
s.source = { :git => "https://github.com/bustoutsolutions/siesta.git", :tag => "1.0.1" }

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

0 comments on commit 5eb05a1

Please sign in to comment.