Skip to content

Commit

Permalink
Update JSONAPI dependency to first major release and reign in the swi…
Browse files Browse the repository at this point in the history
…ftcheck dependency because there can be breaking changes on minor version bumps
  • Loading branch information
mattpolzin committed Aug 25, 2019
1 parent b5f1e09 commit 36ac503
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"repositoryURL": "https://github.com/mattpolzin/JSONAPI.git",
"state": {
"branch": null,
"revision": "099d17aa5803a64d62904f265144b795c38b6db5",
"version": "0.31.0"
"revision": "7824bd8f686762d47eafa3fed6df810d5b13c7fd",
"version": "1.0.0"
}
},
{
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ let package = Package(
targets: ["JSONAPIArbitrary"]),
],
dependencies: [
.package(url: "https://github.com/typelift/SwiftCheck.git", from: "0.12.0"),
.package(url: "https://github.com/mattpolzin/JSONAPI.git", from: "0.31.0"),
.package(url: "https://github.com/typelift/SwiftCheck.git", .upToNextMinor(from: "0.12.0")),
.package(url: "https://github.com/mattpolzin/JSONAPI.git", .upToNextMajor(from: "1.0.0")),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand Down
9 changes: 6 additions & 3 deletions Tests/JSONAPIArbitraryTests/XCTestManifests.swift
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
#if !canImport(ObjectiveC)
import XCTest

extension PlaceholderTests {
static let __allTests = [
// DO NOT MODIFY: This is autogenerated, use:
// `swift test --generate-linuxmain`
// to regenerate.
static let __allTests__PlaceholderTests = [
("test_Placeholder", test_Placeholder),
]
}

#if !os(macOS)
public func __allTests() -> [XCTestCaseEntry] {
return [
testCase(PlaceholderTests.__allTests),
testCase(PlaceholderTests.__allTests__PlaceholderTests),
]
}
#endif

0 comments on commit 36ac503

Please sign in to comment.