Skip to content

Commit b3c5516

Browse files
committed
do not use .upToNextMinor in dependencies definitions
1 parent 6214c24 commit b3c5516

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let package = Package(
1010
],
1111
products: [.library(name: "OpenAPILambda", targets: ["OpenAPILambda"])],
1212
dependencies: [
13-
.package(url: "https://github.com/apple/swift-openapi-runtime.git", .upToNextMinor(from: "1.0.0")),
13+
.package(url: "https://github.com/apple/swift-openapi-runtime.git", from: "1.0.0"),
1414
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", branch: "1.0.0-alpha.1"),
1515
.package(url: "https://github.com/swift-server/swift-aws-lambda-events.git", branch: "main"),
1616
.package(url: "https://github.com/apple/swift-docc-plugin", branch: "main"),

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ To expose your OpenAPI implementation as an AWS Lambda function:
3434

3535
```swift
3636
dependencies: [
37-
.package(url: "https://github.com/apple/swift-openapi-generator.git", .upToNextMinor(from: "1.0.0")),
38-
.package(url: "https://github.com/apple/swift-openapi-runtime.git", .upToNextMinor(from: "1.0.0")),
37+
.package(url: "https://github.com/apple/swift-openapi-generator.git", from: "1.0.0"),
38+
.package(url: "https://github.com/apple/swift-openapi-runtime.git", from: "1.0.0"),
3939

4040
// add these three dependencies
4141
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", branch: "1.0.0-alpha.1"),
@@ -201,8 +201,8 @@ let package = Package(
201201
.executable(name: "QuoteService", targets: ["QuoteService"]),
202202
],
203203
dependencies: [
204-
.package(url: "https://github.com/apple/swift-openapi-generator.git", .upToNextMinor(from: "1.0.0")),
205-
.package(url: "https://github.com/apple/swift-openapi-runtime.git", .upToNextMinor(from: "1.0.0")),
204+
.package(url: "https://github.com/apple/swift-openapi-generator.git", from: "1.0.0"),
205+
.package(url: "https://github.com/apple/swift-openapi-runtime.git", from: "1.0.0"),
206206
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", branch: "1.0.0-alpha.1"),
207207
.package(url: "https://github.com/swift-server/swift-aws-lambda-events.git", branch: "main"),
208208
.package(url: "https://github.com/sebsto/swift-openapi-lambda", branch: "main")

0 commit comments

Comments
 (0)