Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to github.com/blang/semver/v4 #60

Merged
merged 1 commit into from Jul 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Expand Up @@ -3,7 +3,7 @@ module sigs.k8s.io/release-utils
go 1.18

require (
github.com/blang/semver v3.5.1+incompatible
github.com/blang/semver/v4 v4.0.0
github.com/carolynvs/magex v0.8.1
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be
github.com/maxbrunsfeld/counterfeiter/v6 v6.5.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Expand Up @@ -2,8 +2,8 @@ github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 h1:UQHMgLO+TxOEl
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E=
github.com/andybalholm/brotli v1.0.1 h1:KqhlKozYbRtJvsPrrEeXcO+N2l6NYT5A2QAFmSULpEc=
github.com/andybalholm/brotli v1.0.1/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y=
github.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ=
github.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk=
github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM=
github.com/blang/semver/v4 v4.0.0/go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ=
github.com/carolynvs/magex v0.8.1 h1:7QYsqIANzYbj9fgE3fJWOJf+DfkD0Ymr8kz0kNhXxFM=
github.com/carolynvs/magex v0.8.1/go.mod h1:aBJBqUIBFyatSGOv0Ak6j8U+9PzotM600G6Dz0Df1Wg=
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be h1:J5BL2kskAlV9ckgEsNQXscjIaLiOYiZ75d4e94E6dcQ=
Expand Down
2 changes: 1 addition & 1 deletion mage/boilerplate.go
Expand Up @@ -25,7 +25,7 @@ import (
"path/filepath"
"strings"

"github.com/blang/semver"
"github.com/blang/semver/v4"
"github.com/carolynvs/magex/shx"

kpath "k8s.io/utils/path"
Expand Down
2 changes: 1 addition & 1 deletion mage/dependency.go
Expand Up @@ -20,7 +20,7 @@ import (
"fmt"
"log"

"github.com/blang/semver"
"github.com/blang/semver/v4"
"github.com/carolynvs/magex/pkg"
"github.com/carolynvs/magex/shx"
)
Expand Down
2 changes: 1 addition & 1 deletion mage/golang.go
Expand Up @@ -25,7 +25,7 @@ import (
"path/filepath"
"strings"

"github.com/blang/semver"
"github.com/blang/semver/v4"
"github.com/carolynvs/magex/pkg"
"github.com/carolynvs/magex/pkg/gopath"
"github.com/carolynvs/magex/shx"
Expand Down
2 changes: 1 addition & 1 deletion util/common.go
Expand Up @@ -28,7 +28,7 @@ import (
"strings"
"syscall"

"github.com/blang/semver"
"github.com/blang/semver/v4"
"github.com/sirupsen/logrus"

"sigs.k8s.io/release-utils/command"
Expand Down
2 changes: 1 addition & 1 deletion util/common_test.go
Expand Up @@ -24,7 +24,7 @@ import (
"testing"
"time"

"github.com/blang/semver"
"github.com/blang/semver/v4"
"github.com/stretchr/testify/require"
)

Expand Down