Skip to content

Drop Swift 5.2 and 5.3 #262

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .swiftformat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# file options

--swiftversion 5.2
--swiftversion 5.4
--exclude .build

# format options
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.2
// swift-tools-version:5.4

import PackageDescription

Expand Down
3 changes: 1 addition & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
ARG swift_version=5.2
# FIXME when 5.2 images are available
ARG swift_version=5.4
ARG base_image=swift:$swift_version-amazonlinux2
FROM $base_image
# needed to do again after FROM due to docker limitation
Expand Down
36 changes: 0 additions & 36 deletions docker/Dockerfile.ubuntu

This file was deleted.

20 changes: 0 additions & 20 deletions docker/docker-compose.1804.52.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions docker/docker-compose.al2.52.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions docker/docker-compose.al2.53.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ If you have never used AWS Lambda or Docker before, check out this [getting star
First, create a SwiftPM project and pull Swift AWS Lambda Runtime as dependency into your project

```swift
// swift-tools-version:5.2
// swift-tools-version:5.6

import PackageDescription

Expand Down Expand Up @@ -80,7 +80,7 @@ Next, create a `main.swift` and implement your Lambda.
First, add a dependency on the event packages:

```swift
// swift-tools-version:5.2
// swift-tools-version:5.6

import PackageDescription

Expand Down