Skip to content

Commit f5bf294

Browse files
authored
Bump to 1.0.0-alpha.1 (#28)
Bump to 1.0.0-alpha.1 ### Motivation Prepare for 1.0.0-alpha.1. ### Modifications - Updated runtime dependency. - Updated docs. ### Result Ready to tag 1.0.0-alpha.1. ### Test Plan All tests pass. Reviewed by: simonjbeaumont Builds: ✔︎ pull request validation (5.10) - Build finished. ✔︎ pull request validation (5.9) - Build finished. ✔︎ pull request validation (nightly) - Build finished. ✔︎ pull request validation (soundness) - Build finished. #28
1 parent e0c24bc commit f5bf294

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ let package = Package(
3636
dependencies: [
3737
.package(url: "https://github.com/apple/swift-nio", from: "2.58.0"),
3838
.package(url: "https://github.com/swift-server/async-http-client.git", from: "1.19.0"),
39-
.package(url: "https://github.com/apple/swift-openapi-runtime", branch: "main"),
39+
.package(url: "https://github.com/apple/swift-openapi-runtime", exact: "1.0.0-alpha.1"),
4040
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
4141
],
4242
targets: [

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Add the package dependency in your `Package.swift`:
2020
```swift
2121
.package(
2222
url: "https://github.com/swift-server/swift-openapi-async-http-client",
23-
.upToNextMinor(from: "0.3.0")
23+
exact: "1.0.0-alpha.1"
2424
),
2525
```
2626

Sources/OpenAPIAsyncHTTPClient/Documentation.docc/Documentation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Add the package dependency in your `Package.swift`:
2020
```swift
2121
.package(
2222
url: "https://github.com/swift-server/swift-openapi-async-http-client",
23-
.upToNextMinor(from: "0.3.0")
23+
exact: "1.0.0-alpha.1"
2424
),
2525
```
2626

0 commit comments

Comments
 (0)