diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..2ee8a19 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +@marzvrover diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml index e3ade08..f6a9100 100644 --- a/.github/workflows/macOS.yml +++ b/.github/workflows/macOS.yml @@ -5,6 +5,10 @@ on: branches: [ main ] pull_request: branches: [ main ] + types: [opened, reopened] + schedule: + - cron: '0 0 1,15 * *' + workflow_dispatch: jobs: build: @@ -14,7 +18,9 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup Swift - uses: fwal/setup-swift@v1.5.0 + 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 f4a8c91..e64c0b4 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -5,6 +5,10 @@ on: branches: [ main ] pull_request: branches: [ main ] + types: [opened, reopened] + schedule: + - cron: '0 0 1,15 * *' + workflow_dispatch: jobs: build: @@ -14,7 +18,9 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup Swift - uses: fwal/setup-swift@v1.5.0 + 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 3c31f5e..6b5155b 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", from: "2.23.0"), + .package(url: "https://github.com/apple/swift-nio.git", "2.23.0"..."2.39.0"), ], targets: [ .target( diff --git a/README.md b/README.md index 0a5e276..66b6dc4 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.0"), +.package(url: "https://github.com/swiftpackages/DotEnv.git", from: "2.0.1"), ``` ```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.0"), + .package(url: "https://github.com/swiftpackages/DotEnv.git", from: "2.0.1"), ], targets: [ .target(