From 61fdb1ff09f0366e7b0e3b8699ac82ee6f87664c Mon Sep 17 00:00:00 2001 From: Marz Rover Date: Thu, 21 Apr 2022 23:32:04 -0400 Subject: [PATCH] bump swift version support --- .github/workflows/macOS.yml | 3 --- .github/workflows/ubuntu.yml | 3 --- Package.swift | 2 +- README.md | 4 ++-- 4 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml index f6a9100..0ddbdc0 100644 --- a/.github/workflows/macOS.yml +++ b/.github/workflows/macOS.yml @@ -5,7 +5,6 @@ on: branches: [ main ] pull_request: branches: [ main ] - types: [opened, reopened] schedule: - cron: '0 0 1,15 * *' workflow_dispatch: @@ -19,8 +18,6 @@ jobs: - uses: actions/checkout@v2 - name: Setup Swift uses: fwal/setup-swift@v1.14.0 - with: - swift-version: "5.1" - name: Build run: swift build -v - name: Run tests diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index e64c0b4..1daf062 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -5,7 +5,6 @@ on: branches: [ main ] pull_request: branches: [ main ] - types: [opened, reopened] schedule: - cron: '0 0 1,15 * *' workflow_dispatch: @@ -19,8 +18,6 @@ jobs: - uses: actions/checkout@v2 - name: Setup Swift uses: fwal/setup-swift@v1.14.0 - with: - swift-version: "5.1" - name: Build run: swift build -v - name: Run tests diff --git a/Package.swift b/Package.swift index 6b5155b..f8e9876 100644 --- a/Package.swift +++ b/Package.swift @@ -10,7 +10,7 @@ let package = Package( targets: ["DotEnv"]), ], dependencies: [ - .package(url: "https://github.com/apple/swift-nio.git", "2.23.0"..."2.39.0"), + .package(url: "https://github.com/apple/swift-nio.git", from: "2.39.0"), ], targets: [ .target( diff --git a/README.md b/README.md index 66b6dc4..9d5cb0d 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ You can easily add as a requirement with [SwiftPM](https://swift.org/package-man Here are some quick copypastas for you ```swift -.package(url: "https://github.com/swiftpackages/DotEnv.git", from: "2.0.1"), +.package(url: "https://github.com/swiftpackages/DotEnv.git", from: "3.0.0"), ``` ```swift .product(name: "DotEnv", package: "DotEnv"), @@ -47,7 +47,7 @@ let package = Package( targets: ["SuperCoolProject"]), ], dependencies: [ - .package(url: "https://github.com/swiftpackages/DotEnv.git", from: "2.0.1"), + .package(url: "https://github.com/swiftpackages/DotEnv.git", from: "3.0.0"), ], targets: [ .target(