Skip to content

Commit 35d2fea

Browse files
committed
build: remove support for swift[<6.2]
Raise the minimum macOS release to macOS 26 and bump to Swift 6.2. This matches the requirements for swift-platform-core which eases the use of VirtualTerminal in other projects.
1 parent b52be29 commit 35d2fea

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ jobs:
1111
matrix:
1212
include:
1313
- os: ubuntu-latest
14-
swift-version: swift-6.1.2-release
15-
swift-build: 6.1.2-RELEASE
14+
swift-version: swift-6.2-release
15+
swift-build: 6.2-RELEASE
1616
build-args: "--traits GNU"
1717

1818
- os: macos-latest
19-
swift-version: swift-6.1.2-release
20-
swift-build: 6.1.2-RELEASE
19+
swift-version: swift-6.2-release
20+
swift-build: 6.2-RELEASE
2121
build-args: ""
2222

2323
- os: windows-latest
24-
swift-version: swift-6.1.2-release
25-
swift-build: 6.1.2-RELEASE
24+
swift-version: swift-6.2-release
25+
swift-build: 6.2-RELEASE
2626
build-args: ""
2727

2828
runs-on: ${{ matrix.os }}

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55
let _: Package =
66
.init(name: "VirtualTerminal",
77
platforms: [
8-
.macOS(.v15),
8+
.macOS(.v26),
99
],
1010
products: [
1111
.executable(name: "VTDemo", targets: ["VTDemo"]),

0 commit comments

Comments
 (0)