File tree Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ module github.com/operator-framework/api
3
3
go 1.19
4
4
5
5
require (
6
- github.com/blang/semver v3.5.1+incompatible
7
6
github.com/blang/semver/v4 v4.0.0
8
7
github.com/ghodss/yaml v1.0.0
9
8
github.com/go-bindata/go-bindata/v3 v3.1.3
Original file line number Diff line number Diff line change @@ -53,8 +53,6 @@ github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24
53
53
github.com/beorn7/perks v1.0.0 /go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8 =
54
54
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM =
55
55
github.com/beorn7/perks v1.0.1 /go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw =
56
- github.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ =
57
- github.com/blang/semver v3.5.1+incompatible /go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk =
58
56
github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM =
59
57
github.com/blang/semver/v4 v4.0.0 /go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ =
60
58
github.com/census-instrumentation/opencensus-proto v0.2.1 /go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU =
Original file line number Diff line number Diff line change 7
7
"os"
8
8
"strings"
9
9
10
- "github.com/blang/semver"
10
+ "github.com/blang/semver/v4 "
11
11
12
12
"github.com/operator-framework/api/pkg/manifests"
13
13
"github.com/operator-framework/api/pkg/validation/errors"
Original file line number Diff line number Diff line change @@ -2,12 +2,13 @@ package internal
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/blang/semver"
5
+ "sort"
6
+
7
+ "github.com/blang/semver/v4"
6
8
"github.com/operator-framework/api/pkg/manifests"
7
9
"github.com/operator-framework/api/pkg/validation/errors"
8
10
interfaces "github.com/operator-framework/api/pkg/validation/interfaces"
9
11
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
10
- "sort"
11
12
)
12
13
13
14
// k8sVersionKey defines the key which can be used by its consumers
You can’t perform that action at this time.
0 commit comments