Skip to content

Commit afaed67

Browse files
committed
Suffixing /v3 to module name due to go modules' requirement
ref: https://go.dev/doc/modules/version-numbers#major-version
1 parent 4441d3f commit afaed67

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

example/hello-populator/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"k8s.io/apimachinery/pkg/runtime/schema"
2929
"k8s.io/klog/v2"
3030

31-
populator_machinery "github.com/kubernetes-csi/lib-volume-populator/populator-machinery"
31+
populator_machinery "github.com/kubernetes-csi/lib-volume-populator/v3/populator-machinery"
3232
)
3333

3434
const (

example/provider-populator/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"flag"
66

7-
populatorMachinery "github.com/kubernetes-csi/lib-volume-populator/populator-machinery"
7+
populatorMachinery "github.com/kubernetes-csi/lib-volume-populator/v3/populator-machinery"
88
"k8s.io/apimachinery/pkg/runtime/schema"
99

1010
"k8s.io/klog/v2"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/kubernetes-csi/lib-volume-populator
1+
module github.com/kubernetes-csi/lib-volume-populator/v3
22

33
go 1.24.0
44

0 commit comments

Comments
 (0)