Skip to content

Commit 6781031

Browse files
authored
Added the NIO sufix (#11)
## Description <!--- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. --> Following the repository new organization detailed at #205, this project now is `request-dl-nio` supporting SwiftNIO and AsyncHTTPClient
1 parent c051acf commit 6781031

File tree

6 files changed

+29
-17
lines changed

6 files changed

+29
-17
lines changed

.github/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ template: |
1717
1818
$CHANGES
1919
20-
See also: [Documentation](https://swiftpackageindex.com/request-dl/swift-openapi-request-dl/main/documentation/openapirequestdl)
20+
See also: [Documentation](https://swiftpackageindex.com/request-dl/swift-openapi-request-dl-nio/main/documentation/openapirequestdl)

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ jobs:
1818
code-coverage:
1919
uses: request-dl/.github/.github/workflows/code-coverage.yml@main
2020
with:
21-
xcode-version: 15.2
22-
platform: macOS-13
23-
package-tests: swift-openapi-request-dlPackageTests
21+
package-tests: swift-openapi-request-dl-nioPackageTests
2422
target: OpenAPIRequestDL
2523
secrets: inherit
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: No API Breaking Changes
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
paths:
7+
- 'Package.swift'
8+
- 'Sources/**'
9+
- '.github/workflows/no-breaking-changes.yml'
10+
11+
jobs:
12+
breaking-changes:
13+
uses: request-dl/.github/.github/workflows/no-breaking-changes.yml@main
14+
secrets: inherit

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import PackageDescription
55

66
let package = Package(
7-
name: "swift-openapi-request-dl",
8-
platforms: [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6)],
7+
name: "swift-openapi-request-dl-nio",
8+
platforms: [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .visionOS(.v1)],
99
products: [
1010
.library(
1111
name: "OpenAPIRequestDL",
@@ -14,7 +14,7 @@ let package = Package(
1414
],
1515
dependencies: [
1616
.package(
17-
url: "https://github.com/request-dl/request-dl.git",
17+
url: "https://github.com/request-dl/request-dl-nio.git",
1818
from: "3.0.2"
1919
),
2020
.package(
@@ -31,15 +31,15 @@ let package = Package(
3131
name: "OpenAPIRequestDL",
3232
dependencies: [
3333
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
34-
.product(name: "RequestDL", package: "request-dl")
34+
.product(name: "RequestDL", package: "request-dl-nio")
3535
]
3636
),
3737
.testTarget(
3838
name: "OpenAPIRequestDLTests",
3939
dependencies: [
4040
"OpenAPIRequestDL",
4141
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
42-
.product(name: "RequestDL", package: "request-dl")
42+
.product(name: "RequestDL", package: "request-dl-nio")
4343
]
4444
)
4545
]

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[![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)
2-
[![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)
3-
[![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)
1+
[![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)
2+
[![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)
3+
[![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)
44

55
# OpenAPIRequestDL
66

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

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

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

1515
## Installation
1616

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

2020
```swift
2121
dependencies: [
22-
.package(url: "https://github.com/request-dl/swift-openapi-request-dl.git", from: "1.0.0")
22+
.package(url: "https://github.com/request-dl/swift-openapi-request-dl-nio.git", from: "1.0.1")
2323
]
2424
```
2525

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

3838
## Contributing
3939

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

0 commit comments

Comments
 (0)