From 26b13231d2be7c67e60ec44e5880fdcb4850eb0f Mon Sep 17 00:00:00 2001 From: Honza Dvorsky Date: Tue, 28 Nov 2023 10:15:19 +0100 Subject: [PATCH] Bump to 1.0.0-alpha.1 --- Package.swift | 2 +- README.md | 2 +- Sources/OpenAPIURLSession/Documentation.docc/Documentation.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Package.swift b/Package.swift index 02a69d3..f6b1f30 100644 --- a/Package.swift +++ b/Package.swift @@ -41,7 +41,7 @@ let package = Package( ), ], dependencies: [ - .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"), .package(url: "https://github.com/apple/swift-collections", from: "1.0.0"), ], diff --git a/README.md b/README.md index 138c8c9..6819157 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Add the package dependency in your `Package.swift`: ```swift .package( url: "https://github.com/apple/swift-openapi-urlsession", - .upToNextMinor(from: "0.3.0") + exact: "1.0.0-alpha.1" ), ``` diff --git a/Sources/OpenAPIURLSession/Documentation.docc/Documentation.md b/Sources/OpenAPIURLSession/Documentation.docc/Documentation.md index 4c34441..8d87088 100644 --- a/Sources/OpenAPIURLSession/Documentation.docc/Documentation.md +++ b/Sources/OpenAPIURLSession/Documentation.docc/Documentation.md @@ -25,7 +25,7 @@ Add the package dependency in your `Package.swift`: ```swift .package( url: "https://github.com/apple/swift-openapi-urlsession", - .upToNextMinor(from: "0.3.0") + exact: "1.0.0-alpha.1" ), ```