Merge pull request #1792 from carolynvs/bump-semver

Bump github.com/Masterminds/semver
This commit is contained in:
Carolyn Van Slyck 2018-04-02 22:03:39 -05:00 коммит произвёл GitHub
Родитель 103c77564e 310cf2410b
Коммит cac6a1978a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 6 добавлений и 11 удалений

Просмотреть файл

@ -14,6 +14,7 @@ IMPROVEMENTS:
([#1549](https://github.com/golang/dep/pull/1549)). ([#1549](https://github.com/golang/dep/pull/1549)).
* Reduce network access by trusting local source information and only pulling * Reduce network access by trusting local source information and only pulling
from upstream when necessary ([#1250](https://github.com/golang/dep/pull/1250)). from upstream when necessary ([#1250](https://github.com/golang/dep/pull/1250)).
* Update our dependency on Masterminds/semver to follow upstream again now that [Masterminds/semver#67](https://github.com/Masterminds/semver/pull/67) is merged([#1792](https://github.com/golang/dep/pull/1792)).
WIP: WIP:
* Enable importing external configuration from dependencies during init (#1277). This * Enable importing external configuration from dependencies during init (#1277). This

7
Gopkg.lock сгенерированный
Просмотреть файл

@ -2,11 +2,10 @@
[[projects]] [[projects]]
branch = "parse-constraints-with-dash-in-pre" branch = "2.x"
name = "github.com/Masterminds/semver" name = "github.com/Masterminds/semver"
packages = ["."] packages = ["."]
revision = "a93e51b5a57ef416dac8bb02d11407b6f55d8929" revision = "24642bd0573145a5ee04f9be773641695289be46"
source = "https://github.com/carolynvs/semver.git"
[[projects]] [[projects]]
name = "github.com/Masterminds/vcs" name = "github.com/Masterminds/vcs"
@ -89,6 +88,6 @@
[solve-meta] [solve-meta]
analyzer-name = "dep" analyzer-name = "dep"
analyzer-version = 1 analyzer-version = 1
inputs-digest = "215239f4e1109f268dd0eb48480c4987cd66da5deb9ae0b0da15b3cd35d02cd3" inputs-digest = "460ad7112866da4b9a0a626aa3e2fe80699c17bf871afb73b93f836418fb9298"
solver-name = "gps-cdcl" solver-name = "gps-cdcl"
solver-version = 1 solver-version = 1

Просмотреть файл

@ -1,8 +1,6 @@
# https://github.com/Masterminds/semver/pull/60
[[constraint]] [[constraint]]
name = "github.com/Masterminds/semver" name = "github.com/Masterminds/semver"
source = "https://github.com/carolynvs/semver.git" branch = "2.x"
branch = "parse-constraints-with-dash-in-pre"
[[constraint]] [[constraint]]
name = "github.com/Masterminds/vcs" name = "github.com/Masterminds/vcs"

2
vendor/github.com/Masterminds/semver/constraints.go сгенерированный поставляемый
Просмотреть файл

@ -42,7 +42,7 @@ func init() {
cvRegex)) cvRegex))
constraintRangeRegex = regexp.MustCompile(fmt.Sprintf( constraintRangeRegex = regexp.MustCompile(fmt.Sprintf(
`\s*(%s)\s*-\s*(%s)\s*`, `\s*(%s)\s* - \s*(%s)\s*`,
cvRegex, cvRegex)) cvRegex, cvRegex))
} }

3
vendor/github.com/Masterminds/semver/parse.go сгенерированный поставляемый
Просмотреть файл

@ -13,9 +13,6 @@ func rewriteRange(i string) string {
} }
o := i o := i
for _, v := range m { for _, v := range m {
if strings.HasPrefix(v[0], "v") && versionRegex.MatchString(v[0]) {
continue
}
t := fmt.Sprintf(">= %s, <= %s", v[1], v[11]) t := fmt.Sprintf(">= %s, <= %s", v[1], v[11])
o = strings.Replace(o, v[0], t, 1) o = strings.Replace(o, v[0], t, 1)
} }