Skip to content

Commit 1f15bb9

Browse files
authored
Merge pull request #5 from swiftpackages/update-swift
update swift
2 parents def8c62 + 61fdb1f commit 1f15bb9

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

.github/workflows/macOS.yml

-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches: [ main ]
66
pull_request:
77
branches: [ main ]
8-
types: [opened, reopened]
98
schedule:
109
- cron: '0 0 1,15 * *'
1110
workflow_dispatch:
@@ -19,8 +18,6 @@ jobs:
1918
- uses: actions/checkout@v2
2019
- name: Setup Swift
2120
uses: fwal/[email protected]
22-
with:
23-
swift-version: "5.1"
2421
- name: Build
2522
run: swift build -v
2623
- name: Run tests

.github/workflows/ubuntu.yml

-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches: [ main ]
66
pull_request:
77
branches: [ main ]
8-
types: [opened, reopened]
98
schedule:
109
- cron: '0 0 1,15 * *'
1110
workflow_dispatch:
@@ -19,8 +18,6 @@ jobs:
1918
- uses: actions/checkout@v2
2019
- name: Setup Swift
2120
uses: fwal/[email protected]
22-
with:
23-
swift-version: "5.1"
2421
- name: Build
2522
run: swift build -v
2623
- name: Run tests

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let package = Package(
1010
targets: ["DotEnv"]),
1111
],
1212
dependencies: [
13-
.package(url: "https://github.com/apple/swift-nio.git", "2.23.0"..."2.39.0"),
13+
.package(url: "https://github.com/apple/swift-nio.git", from: "2.39.0"),
1414
],
1515
targets: [
1616
.target(

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You can easily add as a requirement with [SwiftPM](https://swift.org/package-man
2323
Here are some quick copypastas for you
2424

2525
```swift
26-
.package(url: "https://github.com/swiftpackages/DotEnv.git", from: "2.0.1"),
26+
.package(url: "https://github.com/swiftpackages/DotEnv.git", from: "3.0.0"),
2727
```
2828
```swift
2929
.product(name: "DotEnv", package: "DotEnv"),
@@ -47,7 +47,7 @@ let package = Package(
4747
targets: ["SuperCoolProject"]),
4848
],
4949
dependencies: [
50-
.package(url: "https://github.com/swiftpackages/DotEnv.git", from: "2.0.1"),
50+
.package(url: "https://github.com/swiftpackages/DotEnv.git", from: "3.0.0"),
5151
],
5252
targets: [
5353
.target(

0 commit comments

Comments
 (0)