Skip to content

Commit 6d8a9ec

Browse files
Add 6.0.3 to 6.1.1
1 parent 800a55c commit 6d8a9ec

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"configurations": [
33
{
4-
"type": "lldb",
4+
"type": "swift",
55
"request": "launch",
66
"sourceLanguages": ["swift"],
77
"name": "Debug App",
@@ -11,7 +11,7 @@
1111
"preLaunchTask": "swift: Build Debug App"
1212
},
1313
{
14-
"type": "lldb",
14+
"type": "swift",
1515
"request": "launch",
1616
"sourceLanguages": ["swift"],
1717
"name": "Release App",

Public/js/runner.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,17 @@ export class Runner {
9494
case "5.10":
9595
case "6.0":
9696
case "6.0.1":
97-
case "6.0.2": {
97+
case "6.0.2":
98+
case "6.0.3":
99+
case "6.1": {
98100
const suffix = version.split(".").join("");
99101
return `https://swiftfiddle-runner-functions-${suffix}.blackwater-cac8eec1.westus2.azurecontainerapps.io/runner/${version}/run`;
100102
}
101103
case "5.10.1": {
102104
const suffix = version.split(".").join("");
103105
return `https://swiftfiddle-runner-functions${suffix}.blackwater-cac8eec1.westus2.azurecontainerapps.io/runner/${version}/run`;
104106
}
105-
case "6.0.3": {
107+
case "6.1.1": {
106108
return `https://runner.swift-playground.com/runner/${version}/run`;
107109
}
108110

Sources/App/versions.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Foundation
22

33
func latestVersion() throws -> String { try availableVersions()[0] }
4-
func stableVersion() -> String { "6.0.3" }
4+
func stableVersion() -> String { "6.1.1" }
55

66
func availableVersions() throws -> [String] {
77
[
@@ -15,6 +15,8 @@ func availableVersions() throws -> [String] {
1515
"nightly-5.5",
1616
"nightly-5.4",
1717
"nightly-5.3",
18+
"6.1.1",
19+
"6.1",
1820
"6.0.3",
1921
"6.0.2",
2022
"6.0.1",

0 commit comments

Comments
 (0)