Skip to content

Commit

Permalink
Merge pull request #309 from bustoutsolutions/swiftpm-quick-dependenc…
Browse files Browse the repository at this point in the history
…y-fix

SwiftPM Quick dependency fix
  • Loading branch information
pcantrell authored Apr 10, 2020
2 parents a42b823 + a13f1c0 commit cb9c1bf
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 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.5.0)
- Siesta/UI (1.5.0):
- Siesta/Core (1.5.1)
- Siesta/UI (1.5.1):
- Siesta/Core

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

SPEC CHECKSUMS:
Siesta: 407b99ae05344d2de33d98e9e239551086daee6a
Siesta: 0b689eff328778c754c4f9afe33ffd70af5ada3d

PODFILE CHECKSUM: 974001388daa9ecbfa915ea0bc4093a33242099c

Expand Down
6 changes: 3 additions & 3 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
"package": "Quick",
"repositoryURL": "https://github.com/pcantrell/Quick",
"state": {
"branch": "around-each",
"revision": "d91676d00600c42f9b55349765b1f1099141bfba",
"version": null
"branch": null,
"revision": "39b75c1cd536acb95f643bde93de45e272ccaf86",
"version": "0.0.0"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let package = Package(
.package(url: "https://github.com/Alamofire/Alamofire", .upToNextMajor(from: "5.0.5")),

// For tests:
.package(url: "https://github.com/pcantrell/Quick", .branch("around-each")),
.package(url: "https://github.com/pcantrell/Quick", .exact("0.0.0")),
.package(url: "https://github.com/Quick/Nimble", from: "8.0.1"),
],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ In Xcode:

* File → Swift Packages → Add Package Dependency…
* Enter `https://github.com/bustoutsolutions/siesta` in the URL field and click Next.
* For now, depend on the `master` branch. (A branch-based test-only dependency of Siesta currently prevents a versioned dependency on Siesta from working properly. Until this is fixed, you can’t point SwiftPM at Siesta by version.) Click Next.
* The defaults for the version settings are good for most projects. Click Next.
* Check the checkbox next to “Siesta.”
- Also check “SiestaUI” if you want to use any of the [UI helpers](https://github.com/bustoutsolutions/siesta/tree/master/Source/SiestaUI).
- Also check “Siesta_Alamofire” if you want to use the Alamofire extension for Siesta.
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.5.0"
s.version = "1.5.1"
s.summary = "Swift REST client library"

s.description = <<-DESC
Expand Down Expand Up @@ -72,7 +72,7 @@ Pod::Spec.new do |s|
s.osx.deployment_target = "10.12"
s.tvos.deployment_target = "10.0"

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

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

0 comments on commit cb9c1bf

Please sign in to comment.