File tree 2 files changed +27
-3
lines changed
2 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
---
4
4
5
+ ## [ 1.1.3] 2022-11-08
6
+
7
+ ### Added
8
+
9
+ - Add ` dotnet5.0 ` and ` dotnet6 `
10
+
11
+ ---
12
+
5
13
## [ 1.1.2] 2022-05-09
6
14
7
15
### Added
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ let runtimes = {
25
25
'go1.x' ,
26
26
] ,
27
27
dotnet : [
28
+ 'dotnet6' ,
29
+ 'dotnet5.0' ,
28
30
'dotnetcore3.1' ,
29
31
] ,
30
32
custom : [
@@ -118,11 +120,25 @@ let runtimeVersions = {
118
120
patch : null ,
119
121
wildcard : '1.*.*' ,
120
122
} ,
121
- 'dotnetcore3.1 ' : {
123
+ 'dotnet6 ' : {
122
124
runtime : 'dotnet' ,
123
- major : '3 ' ,
124
- minor : '1' ,
125
+ major : '6 ' ,
126
+ minor : null ,
125
127
patch : null ,
128
+ wildcard : '6.*' ,
129
+ } ,
130
+ 'dotnet5.0' : {
131
+ runtime : 'dotnet' ,
132
+ major : '5' ,
133
+ minor : '0' ,
134
+ patch : null ,
135
+ wildcard : '5.0.*' ,
136
+ } ,
137
+ 'dotnetcore3.1' : {
138
+ runtime : 'dotnet' ,
139
+ major : '3' ,
140
+ minor : '1' ,
141
+ patch : null ,
126
142
wildcard : '3.1.*' ,
127
143
} ,
128
144
}
You can’t perform that action at this time.
0 commit comments