Skip to content

Commit

Permalink
fix: Update iOS version requirements
Browse files Browse the repository at this point in the history
NOTE: This is not a breaking change, because the code hasn't fundamentally changed since the introduction of version 5.0.0, this is just a fix that makes version 5.0.0 work correctly.

Co-authored-by: Matic Zavadlal <matic.zavadlal@gmail.com>
  • Loading branch information
robsontenorio and maticzav committed Jun 19, 2023
1 parent 4f6de58 commit 0388098
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// swift-tools-version:5.6
// swift-tools-version:5.7

import PackageDescription

let package = Package(
name: "swift-graphql",
platforms: [
.iOS(.v13),
.iOS(.v15),
.macOS(.v10_15),
.tvOS(.v13),
.watchOS(.v6)
Expand Down
3 changes: 3 additions & 0 deletions website/docs/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ The library is centered around three core principles:
SwiftGraphQLClient is heavily inspired by `urql` GraphQL client in the JavaScript community. It models the queries as streams of values and lets you create custom operation processors called exchanges.

```swift
import SwiftGraphQLClient
import GraphQL

let request = URLRequest(url: URL(string: "http://127.0.0.1:4000/graphql")!)
let client = SwiftGraphQLClient.Client(request: request)

Expand Down

1 comment on commit 0388098

@vercel
Copy link

@vercel vercel bot commented on 0388098 Jun 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.