File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"configurations" : [
3
3
{
4
- "type" : " lldb " ,
4
+ "type" : " swift " ,
5
5
"request" : " launch" ,
6
6
"sourceLanguages" : [" swift" ],
7
7
"name" : " Debug App" ,
11
11
"preLaunchTask" : " swift: Build Debug App"
12
12
},
13
13
{
14
- "type" : " lldb " ,
14
+ "type" : " swift " ,
15
15
"request" : " launch" ,
16
16
"sourceLanguages" : [" swift" ],
17
17
"name" : " Release App" ,
Original file line number Diff line number Diff line change @@ -94,15 +94,17 @@ export class Runner {
94
94
case "5.10" :
95
95
case "6.0" :
96
96
case "6.0.1" :
97
- case "6.0.2" : {
97
+ case "6.0.2" :
98
+ case "6.0.3" :
99
+ case "6.1" : {
98
100
const suffix = version . split ( "." ) . join ( "" ) ;
99
101
return `https://swiftfiddle-runner-functions-${ suffix } .blackwater-cac8eec1.westus2.azurecontainerapps.io/runner/${ version } /run` ;
100
102
}
101
103
case "5.10.1" : {
102
104
const suffix = version . split ( "." ) . join ( "" ) ;
103
105
return `https://swiftfiddle-runner-functions${ suffix } .blackwater-cac8eec1.westus2.azurecontainerapps.io/runner/${ version } /run` ;
104
106
}
105
- case "6.0.3 " : {
107
+ case "6.1.1 " : {
106
108
return `https://runner.swift-playground.com/runner/${ version } /run` ;
107
109
}
108
110
Original file line number Diff line number Diff line change 1
1
import Foundation
2
2
3
3
func latestVersion( ) throws -> String { try availableVersions ( ) [ 0 ] }
4
- func stableVersion( ) -> String { " 6.0.3 " }
4
+ func stableVersion( ) -> String { " 6.1.1 " }
5
5
6
6
func availableVersions( ) throws -> [ String ] {
7
7
[
@@ -15,6 +15,8 @@ func availableVersions() throws -> [String] {
15
15
" nightly-5.5 " ,
16
16
" nightly-5.4 " ,
17
17
" nightly-5.3 " ,
18
+ " 6.1.1 " ,
19
+ " 6.1 " ,
18
20
" 6.0.3 " ,
19
21
" 6.0.2 " ,
20
22
" 6.0.1 " ,
You can’t perform that action at this time.
0 commit comments