Unable to use v9.0.0
rajch opened this issue · 4 comments
rajch commented
Getting this error while trying to upgrade to v9.0.0:
$ go get sigs.k8s.io/sig-storage-lib-external-provisioner/v8@v9.0.0
go: sigs.k8s.io/sig-storage-lib-external-provisioner/v8@v9.0.0: invalid version: module path includes a major version suffix, so major version must match
rajch commented
That gives the following result:
```
$ go get ***@***.***
go: ***@***.***: invalid version: go.mod has non-.../v9 module path "sigs.k8s.io/sig-storage-lib-external-provisioner/v8" (and .../v9/go.mod does not exist) at revision v9.0.0
```
…________________________________
From: kjagosz ***@***.***>
Sent: Saturday, February 18, 2023 4:37 AM
To: kubernetes-sigs/sig-storage-lib-external-provisioner ***@***.***>
Cc: Raj Chaudhuri ***@***.***>; Author ***@***.***>
Subject: Re: [kubernetes-sigs/sig-storage-lib-external-provisioner] Unable to use v9.0.0 (Issue #137)
Try use command
go get ***@***.***
—
Reply to this email directly, view it on GitHub<#137 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/ACUBHOIZHZMYOQRSHEJM2ODWYAAEZANCNFSM6AAAAAAUIKG6LI>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
jsafrane commented
/assign
I am terribly sorry, I missed bumping go.mod completely!
jsafrane commented
go get sigs.k8s.io/sig-storage-lib-external-provisioner/v9
now works
rajch commented
Thanks.