Skip to content

Commit 54ff67c

Browse files
committed
simplify package version dependency
1 parent 75e429c commit 54ff67c

File tree

5 files changed

+4
-23
lines changed

5 files changed

+4
-23
lines changed

Sources/AWSLambdaRuntimeCore/Documentation.docc/Resources/code/03-02-03-package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ let package = Package(
99
.macOS(.v12),
1010
],
1111
dependencies: [
12-
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", .upToNextMajor(from: "1.0.0-alpha")),
12+
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", from: "1.0.0-alpha"),
1313
],
1414
)

Sources/AWSLambdaRuntimeCore/Documentation.docc/Resources/code/03-02-04-package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ let package = Package(
1212
.executable(name: "SquareNumberLambda", targets: ["SquareNumberLambda"]),
1313
],
1414
dependencies: [
15-
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", .upToNextMajor(from: "1.0.0-alpha")),
15+
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", from: "1.0.0-alpha"),
1616
],
1717
)

Sources/AWSLambdaRuntimeCore/Documentation.docc/Resources/code/03-02-05-package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let package = Package(
1212
.executable(name: "SquareNumberLambda", targets: ["SquareNumberLambda"]),
1313
],
1414
dependencies: [
15-
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", .upToNextMajor(from: "1.0.0-alpha")),
15+
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", from: "1.0.0-alpha"),
1616
],
1717
targets: [
1818
.executableTarget(

Sources/AWSLambdaRuntimeCore/Documentation.docc/Resources/code/03-03-xx-main.swift

-19
This file was deleted.

Sources/AWSLambdaRuntimeCore/Documentation.docc/quick-setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ let package = Package(
3737
.executable(name: "YourFunctionName", targets: ["YourFunctionName"]),
3838
],
3939
dependencies: [
40-
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", .upToNextMajor(from: "1.0.0-alpha")),
40+
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", from: "1.0.0-alpha"),
4141
],
4242
targets: [
4343
.executableTarget(

0 commit comments

Comments
 (0)