Skip to content

Commit 578237e

Browse files
authored
Merge pull request #3 from b3ll/dev/b3ll/bump_deployment_target
Bump Deployment Targets to iOS 13, macOS 11, tvOS 13. Fixes #2
2 parents 5a61054 + 2d44fa3 commit 578237e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/create-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
create_release:
1010
name: Create Release
11-
runs-on: macos-latest
11+
runs-on: macos-12
1212
steps:
1313
- uses: actions/checkout@v2
1414

.github/workflows/jazzy-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push]
44

55
jobs:
66
deploy_docs:
7-
runs-on: macos-latest
7+
runs-on: macos-12
88
steps:
99
- uses: actions/checkout@v2
1010

.github/workflows/swift.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: macos-latest
11+
runs-on: macos-12
1212

1313
steps:
1414
- uses: actions/checkout@v2

Package.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
// swift-tools-version:5.2
1+
// swift-tools-version:5.6
22

33
import PackageDescription
44

55
let package = Package(
66
name: "Decomposed",
77
platforms: [
8-
.iOS(.v10),
9-
.macOS(.v10_12),
10-
.tvOS(.v10)
8+
.iOS(.v13),
9+
.macOS(.v11),
10+
.tvOS(.v13)
1111
],
1212
products: [
1313
.library(

0 commit comments

Comments
 (0)