File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ export class Runner {
27
27
case "nightly-5.9" :
28
28
case "nightly-5.10" :
29
29
case "nightly-6.0" :
30
+ case "nightly-6.1" :
31
+ case "nightly-6.2" :
30
32
case "nightly-main" : {
31
33
const suffix = version . split ( "." ) . join ( "" ) . split ( "-" ) . join ( "" ) ;
32
34
return `https://runner-functions-${ suffix } .blackwater-cac8eec1.westus2.azurecontainerapps.io/runner/${ version } /run` ;
@@ -96,15 +98,16 @@ export class Runner {
96
98
case "6.0.1" :
97
99
case "6.0.2" :
98
100
case "6.0.3" :
99
- case "6.1" : {
101
+ case "6.1" :
102
+ case "6.1.1" : {
100
103
const suffix = version . split ( "." ) . join ( "" ) ;
101
104
return `https://swiftfiddle-runner-functions-${ suffix } .blackwater-cac8eec1.westus2.azurecontainerapps.io/runner/${ version } /run` ;
102
105
}
103
106
case "5.10.1" : {
104
107
const suffix = version . split ( "." ) . join ( "" ) ;
105
108
return `https://swiftfiddle-runner-functions${ suffix } .blackwater-cac8eec1.westus2.azurecontainerapps.io/runner/${ version } /run` ;
106
109
}
107
- case "6.1.1 " : {
110
+ case "6.1.2 " : {
108
111
return `https://runner.swift-playground.com/runner/${ version } /run` ;
109
112
}
110
113
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.1.1 " }
4
+ func stableVersion( ) -> String { " 6.1.2 " }
5
5
6
6
func availableVersions( ) throws -> [ String ] {
7
7
[
8
8
" nightly-main " ,
9
+ " nightly-6.2 " ,
10
+ " nightly-6.1 " ,
9
11
" nightly-6.0 " ,
10
12
" nightly-5.10 " ,
11
13
" nightly-5.9 " ,
@@ -15,6 +17,7 @@ func availableVersions() throws -> [String] {
15
17
" nightly-5.5 " ,
16
18
" nightly-5.4 " ,
17
19
" nightly-5.3 " ,
20
+ " 6.1.2 " ,
18
21
" 6.1.1 " ,
19
22
" 6.1 " ,
20
23
" 6.0.3 " ,
You can’t perform that action at this time.
0 commit comments