diff --git a/Package.swift b/Package.swift index 9c3efdc..6d83659 100644 --- a/Package.swift +++ b/Package.swift @@ -36,7 +36,7 @@ let package = Package( dependencies: [ .package(url: "https://github.com/apple/swift-nio", from: "2.58.0"), .package(url: "https://github.com/swift-server/async-http-client.git", from: "1.19.0"), - .package(url: "https://github.com/apple/swift-openapi-runtime", branch: "main"), + .package(url: "https://github.com/apple/swift-openapi-runtime", exact: "1.0.0-alpha.1"), .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"), ], targets: [ diff --git a/README.md b/README.md index 30e5981..fde930f 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Add the package dependency in your `Package.swift`: ```swift .package( url: "https://github.com/swift-server/swift-openapi-async-http-client", - .upToNextMinor(from: "0.3.0") + exact: "1.0.0-alpha.1" ), ``` diff --git a/Sources/OpenAPIAsyncHTTPClient/Documentation.docc/Documentation.md b/Sources/OpenAPIAsyncHTTPClient/Documentation.docc/Documentation.md index a70975d..123bc69 100644 --- a/Sources/OpenAPIAsyncHTTPClient/Documentation.docc/Documentation.md +++ b/Sources/OpenAPIAsyncHTTPClient/Documentation.docc/Documentation.md @@ -20,7 +20,7 @@ Add the package dependency in your `Package.swift`: ```swift .package( url: "https://github.com/swift-server/swift-openapi-async-http-client", - .upToNextMinor(from: "0.3.0") + exact: "1.0.0-alpha.1" ), ```