Skip to content

Commit

Permalink
Update Dependencies and Specify Stable Versions (#9)
Browse files Browse the repository at this point in the history
* Update lambda events

* Update AWS runtime

* Be more permissive with SwiftLint

* Update lambda runtime range to exclude the release
  • Loading branch information
mgacy authored Jan 23, 2024
1 parent dbef3a1 commit 7c3c329
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/swift-server/swift-aws-lambda-events",
"state" : {
"branch" : "main",
"revision" : "3ac078f4d8fe6d9ae8dd05b680a284a423e1578d"
"revision" : "997094fe7c55762c07179419a1686230dfa13bef",
"version" : "0.2.0"
}
},
{
"identity" : "swift-aws-lambda-runtime",
"kind" : "remoteSourceControl",
"location" : "https://github.com/swift-server/swift-aws-lambda-runtime",
"location" : "https://github.com/swift-server/swift-aws-lambda-runtime.git",
"state" : {
"branch" : "main",
"revision" : "2c3b2451db34adee595d3c8b4dac9338e8e966e9"
"revision" : "8d9f44b7838750b103ad2ad49055e8333d719e8a",
"version" : "1.0.0-alpha.2"
}
},
{
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ let package = Package(
dependencies: [
.package(url: "https://github.com/apple/swift-log.git", .upToNextMajor(from: "1.4.2")),
.package(url: "https://github.com/apple/swift-nio.git", .upToNextMajor(from: "2.43.1")),
.package(url: "https://github.com/swift-server/swift-aws-lambda-events.git", branch: "main"),
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", branch: "main")
.package(url: "https://github.com/swift-server/swift-aws-lambda-events.git", .upToNextMajor(from: "0.2.0")),
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", "1.0.0-alpha.1"..<"1.0.0-beta.999")
]
)

Expand Down Expand Up @@ -53,7 +53,7 @@ let targets: [Target] = [
]

#if os(macOS)
package.dependencies.append(.package(url: "https://github.com/realm/SwiftLint.git", exact: "0.54.0"))
package.dependencies.append(.package(url: "https://github.com/realm/SwiftLint.git", from: "0.54.0"))
for target in targets {
target.plugins = [.plugin(name: "SwiftLintPlugin", package: "SwiftLint")]
}
Expand Down

0 comments on commit 7c3c329

Please sign in to comment.