Skip to content

Commit

Permalink
Merge pull request #5 from swiftpackages/update-swift
Browse files Browse the repository at this point in the history
update swift
  • Loading branch information
marzvrover committed Apr 22, 2022
2 parents def8c62 + 61fdb1f commit 1f15bb9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/macOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
branches: [ main ]
pull_request:
branches: [ main ]
types: [opened, reopened]
schedule:
- cron: '0 0 1,15 * *'
workflow_dispatch:
Expand All @@ -19,8 +18,6 @@ jobs:
- uses: actions/checkout@v2
- name: Setup Swift
uses: fwal/[email protected]
with:
swift-version: "5.1"
- name: Build
run: swift build -v
- name: Run tests
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
branches: [ main ]
pull_request:
branches: [ main ]
types: [opened, reopened]
schedule:
- cron: '0 0 1,15 * *'
workflow_dispatch:
Expand All @@ -19,8 +18,6 @@ jobs:
- uses: actions/checkout@v2
- name: Setup Swift
uses: fwal/[email protected]
with:
swift-version: "5.1"
- name: Build
run: swift build -v
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand All @@ -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(
Expand Down

0 comments on commit 1f15bb9

Please sign in to comment.