We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd1ae1b commit 4e5f1b2Copy full SHA for 4e5f1b2
1 file changed
specs-go/version.go
@@ -25,7 +25,7 @@ import (
25
26
const (
27
// CurrentVersion is the current version of the Spec.
28
- CurrentVersion = "1.0.0"
+ CurrentVersion = "1.1.0"
29
30
// vCurrent is the current version as a semver-comparable type
31
vCurrent version = "v" + CurrentVersion
@@ -150,12 +150,20 @@ func requiresV110(spec *Spec) bool {
150
}
151
152
153
+ if len(spec.ContainerEdits.NetDevices) != 0 {
154
+ return true
155
+ }
156
+
157
for _, dev := range spec.Devices {
158
if i := dev.ContainerEdits.IntelRdt; i != nil {
159
if i.Schemata != nil || i.EnableMonitoring {
160
return true
161
162
163
164
+ if len(dev.ContainerEdits.NetDevices) != 0 {
165
166
167
168
169
return false
0 commit comments