1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

fix: github.com/Masterminds/semver import path (#808)

* fix import path casing in Mastermind/semver

* fix import path in Gopkg.lock
This commit is contained in:
He Liu 2018-09-19 09:51:52 -07:00 committed by Carlos Alexandro Becker
parent 4206de324e
commit 281632fe6c
2 changed files with 3 additions and 3 deletions

4
Gopkg.lock generated
View File

@ -181,7 +181,7 @@
[[projects]]
digest = "1:b856d8248663c39265a764561c1a1a149783f6cc815feb54a1f3a591b91f6eca"
name = "github.com/masterminds/semver"
name = "github.com/Masterminds/semver"
packages = ["."]
pruneopts = ""
revision = "c7af12943936e8c39859482e61f0574c2fd7fc75"
@ -331,7 +331,7 @@
"github.com/goreleaser/nfpm/deb",
"github.com/goreleaser/nfpm/rpm",
"github.com/imdario/mergo",
"github.com/masterminds/semver",
"github.com/Masterminds/semver",
"github.com/mattn/go-zglob",
"github.com/mitchellh/go-homedir",
"github.com/pkg/errors",

View File

@ -8,7 +8,7 @@ import (
"github.com/goreleaser/goreleaser/internal/artifact"
"github.com/goreleaser/goreleaser/pkg/context"
"github.com/masterminds/semver"
"github.com/Masterminds/semver"
"github.com/pkg/errors"
)