Browse Source

fix dep for minor version bumps

pull/1780/head
Ethan Buchman 7 years ago
parent
commit
f9d9d92ea3
2 changed files with 16 additions and 16 deletions
  1. +5
    -11
      Gopkg.lock
  2. +11
    -5
      Gopkg.toml

+ 5
- 11
Gopkg.lock View File

@ -131,14 +131,14 @@
revision = "169b1b37be738edb2813dab48c97a549bcf99bb5" revision = "169b1b37be738edb2813dab48c97a549bcf99bb5"
[[projects]] [[projects]]
branch = "release/v0.7.1"
name = "github.com/tendermint/tmlibs" name = "github.com/tendermint/tmlibs"
packages = [ packages = [
"common", "common",
"db", "db",
"log" "log"
] ]
revision = "db3d1cb7fa388e5ec48ac5cc5e57efe505592fd8"
revision = "24da7009c3d8c019b40ba4287495749e3160caca"
version = "v0.7.1"
[[projects]] [[projects]]
branch = "master" branch = "master"
@ -186,13 +186,9 @@
packages = [ packages = [
".", ".",
"balancer", "balancer",
"balancer/base",
"balancer/roundrobin",
"codes", "codes",
"connectivity", "connectivity",
"credentials", "credentials",
"encoding",
"encoding/proto",
"grpclb/grpc_lb_v1/messages", "grpclb/grpc_lb_v1/messages",
"grpclog", "grpclog",
"internal", "internal",
@ -201,19 +197,17 @@
"naming", "naming",
"peer", "peer",
"resolver", "resolver",
"resolver/dns",
"resolver/passthrough",
"stats", "stats",
"status", "status",
"tap", "tap",
"transport" "transport"
] ]
revision = "8e4536a86ab602859c20df5ebfd0bd4228d08655"
version = "v1.10.0"
revision = "5b3c4e850e90a4cf6a20ebd46c8b32a0a3afcb9e"
version = "v1.7.5"
[solve-meta] [solve-meta]
analyzer-name = "dep" analyzer-name = "dep"
analyzer-version = 1 analyzer-version = 1
inputs-digest = "78be153704328a9535c34fa8087d5a082f731a73d868c626d914aac8dd4bd1a0"
inputs-digest = "e0c31538af2916be2aed38bae72f9040d93aa9a4b86a1839df7a83545a2442f1"
solver-name = "gps-cdcl" solver-name = "gps-cdcl"
solver-version = 1 solver-version = 1

+ 11
- 5
Gopkg.toml View File

@ -24,26 +24,32 @@
# go-tests = true # go-tests = true
# unused-packages = true # unused-packages = true
# NOTE if not specified, dep automatically adds `^` to each version,
# meaning it will accept up to the next version for the first non-zero
# element in the version.
#
# So `version = "1.3.2"` means `1.3.2 <= version < 2.0.0`.
# Use `~` for only minor version bumps.
[[constraint]] [[constraint]]
name = "github.com/gogo/protobuf" name = "github.com/gogo/protobuf"
version = "1.0.0"
version = "~1.0.0"
[[constraint]] [[constraint]]
name = "github.com/spf13/cobra" name = "github.com/spf13/cobra"
version = "0.0.1"
version = "~0.0.1"
[[constraint]] [[constraint]]
name = "github.com/stretchr/testify" name = "github.com/stretchr/testify"
version = "1.2.1"
version = "~1.2.1"
[[constraint]] [[constraint]]
branch = "release/v0.7.1"
version = "~0.7.1"
name = "github.com/tendermint/tmlibs" name = "github.com/tendermint/tmlibs"
[[constraint]] [[constraint]]
name = "google.golang.org/grpc" name = "google.golang.org/grpc"
version = "1.7.3"
version = "~1.7.3"
[prune] [prune]
go-tests = true go-tests = true


Loading…
Cancel
Save