Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ template: |

$CHANGES

See also: [Documentation](https://swiftpackageindex.com/request-dl/swift-openapi-request-dl/main/documentation/openapirequestdl)
See also: [Documentation](https://swiftpackageindex.com/request-dl/swift-openapi-request-dl-nio/main/documentation/openapirequestdl)
4 changes: 1 addition & 3 deletions .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ jobs:
code-coverage:
uses: request-dl/.github/.github/workflows/code-coverage.yml@main
with:
xcode-version: 15.2
platform: macOS-13
package-tests: swift-openapi-request-dlPackageTests
package-tests: swift-openapi-request-dl-nioPackageTests
target: OpenAPIRequestDL
secrets: inherit
14 changes: 14 additions & 0 deletions .github/workflows/no-breaking-changes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: No API Breaking Changes

on:
pull_request:
branches: [main]
paths:
- 'Package.swift'
- 'Sources/**'
- '.github/workflows/no-breaking-changes.yml'

jobs:
breaking-changes:
uses: request-dl/.github/.github/workflows/no-breaking-changes.yml@main
secrets: inherit
4 changes: 2 additions & 2 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import PackageDescription

let package = Package(
name: "swift-openapi-request-dl",
platforms: [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6)],
name: "swift-openapi-request-dl-nio",
platforms: [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .visionOS(.v1)],
products: [
.library(
name: "OpenAPIRequestDL",
Expand All @@ -14,7 +14,7 @@ let package = Package(
],
dependencies: [
.package(
url: "https://github.com/request-dl/request-dl.git",
url: "https://github.com/request-dl/request-dl-nio.git",
from: "3.0.2"
),
.package(
Expand All @@ -31,15 +31,15 @@ let package = Package(
name: "OpenAPIRequestDL",
dependencies: [
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
.product(name: "RequestDL", package: "request-dl")
.product(name: "RequestDL", package: "request-dl-nio")
]
),
.testTarget(
name: "OpenAPIRequestDLTests",
dependencies: [
"OpenAPIRequestDL",
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
.product(name: "RequestDL", package: "request-dl")
.product(name: "RequestDL", package: "request-dl-nio")
]
)
]
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Swift Compatibility](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Frequest-dl%2Fswift-openapi-request-dl%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/request-dl/swift-openapi-request-dl)
[![Platform Compatibility](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Frequest-dl%2Fswift-openapi-request-dl%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/request-dl/swift-openapi-request-dl)
[![codecov](https://codecov.io/github/request-dl/swift-openapi-request-dl/branch/main/graph/badge.svg?token=Cz6ro3SEc3)](https://codecov.io/github/request-dl/swift-openapi-request-dl)
[![Swift Compatibility](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Frequest-dl%2Fswift-openapi-request-dl-nio%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/request-dl/swift-openapi-request-dl-nio)
[![Platform Compatibility](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Frequest-dl%2Fswift-openapi-request-dl-nio%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/request-dl/swift-openapi-request-dl-nio)
[![codecov](https://codecov.io/gh/request-dl/swift-openapi-request-dl-nio/graph/badge.svg?token=Cz6ro3SEc3)](https://codecov.io/gh/request-dl/swift-openapi-request-dl-nio)

# OpenAPIRequestDL

Expand All @@ -10,7 +10,7 @@ To generate code for the objects, you should use the [Swift OpenAPI Generator](h

Additionally, Apple has provided all the details in the WWDC23 session [Meet Swift OpenAPI Generator](https://developer.apple.com/wwdc23/10171).

- [Documentation](https://swiftpackageindex.com/request-dl/swift-openapi-request-dl/main/documentation/openapirequestdl)
- [Documentation](https://swiftpackageindex.com/request-dl/swift-openapi-request-dl-nio/main/documentation/openapirequestdl)

## Installation

Expand All @@ -19,7 +19,7 @@ add the following dependency to your Package.swift file:

```swift
dependencies: [
.package(url: "https://github.com/request-dl/swift-openapi-request-dl.git", from: "1.0.0")
.package(url: "https://github.com/request-dl/swift-openapi-request-dl-nio.git", from: "1.0.1")
]
```

Expand All @@ -37,5 +37,5 @@ It is recommended to review the release notes for each version to understand the

## Contributing

If you find a bug or have an idea for a new feature, please open an issue or
If you find a bug or have an idea for a new feature, please open an issue or
submit a pull request. We welcome contributions from the community!