Skip to content

Commit

Permalink
Update Minimum Swift Version to 5.6 (#2996)
Browse files Browse the repository at this point in the history
* Bump manifest to Swift 5.6

* Update README

* Remove old version check

* Trigger new CI
  • Loading branch information
0xTim committed Apr 11, 2023
1 parent 00bd82b commit f4b00a5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
- provider: vapor/apns
ref: 3.0.0
runs-on: ubuntu-latest
container: swift:5.7-jammy
container: swift:5.8
steps:
- name: Check out Vapor
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
@@ -1,4 +1,4 @@
// swift-tools-version:5.5.2
// swift-tools-version:5.6
import PackageDescription

let package = Package(
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -18,7 +18,7 @@
<img src="https://github.com/vapor/vapor/actions/workflows/test.yml/badge.svg?branch=main" alt="Continuous Integration">
</a>
<a href="https://swift.org">
<img src="https://img.shields.io/badge/swift-5.5-brightgreen.svg" alt="Swift 5.5">
<img src="https://img.shields.io/badge/swift-5.6-brightgreen.svg" alt="Swift 5.6">
</a>
<a href="https://twitter.com/codevapor">
<img src="https://img.shields.io/badge/twitter-codevapor-5AA9E7.svg" alt="Twitter">
Expand Down
2 changes: 1 addition & 1 deletion Sources/Vapor/Utilities/BasicCodingKey.swift
@@ -1,4 +1,4 @@
#if swift(>=5.6) && os(Linux)
#if os(Linux)
public typealias CodingKeyRepresentable = Swift.CodingKeyRepresentable
#else
/// This is an unwelcome stand-in for the ``Swift/CodingKeyRepresentable`` protocol that appeared in Swift 5.6.
Expand Down

0 comments on commit f4b00a5

Please sign in to comment.