From 1f57d51df31850d0af3621c6c90540acdbde2854 Mon Sep 17 00:00:00 2001 From: Juan Leni Date: Tue, 29 Jan 2019 21:04:57 +0100 Subject: [PATCH] avoid case mismatches in vendor deps --- Gopkg.lock | 34 +++++++++++++++++----------------- Gopkg.toml | 6 +++--- user_app.go | 2 +- validator_app.go | 2 +- 4 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Gopkg.lock b/Gopkg.lock index 07b4ac7..0408f2e 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -1,22 +1,6 @@ # This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. -[[projects]] - digest = "1:b73f5e117bc7c6e8fc47128f20db48a873324ad5cfeeebfc505e85c58682b5e4" - name = "github.com/ZondaX/hid" - packages = ["."] - pruneopts = "T" - revision = "302fd402163c34626286195dfa9adac758334acc" - version = "v0.9.0" - -[[projects]] - digest = "1:312416a870d6ef9941e1ea7893480ff1e6627cc66517ce2760bf97af427d8f8c" - name = "github.com/ZondaX/ledger-go" - packages = ["."] - pruneopts = "UT" - revision = "6c752dfd14666393766f120c0c3ae940b5aaa8d5" - version = "v0.6.0" - [[projects]] branch = "master" digest = "1:093bf93a65962e8191e3e8cd8fc6c363f83d43caca9739c906531ba7210a9904" @@ -129,6 +113,22 @@ revision = "4d7b29cd8f8ef998cf8f7141f3a100b0a4fa718d" version = "v0.29.1" +[[projects]] + digest = "1:b73f5e117bc7c6e8fc47128f20db48a873324ad5cfeeebfc505e85c58682b5e4" + name = "github.com/zondax/hid" + packages = ["."] + pruneopts = "T" + revision = "302fd402163c34626286195dfa9adac758334acc" + version = "v0.9.0" + +[[projects]] + digest = "1:65384c591a38a7fe5b2593cb195e4da7870970687b38f6da64a94a4bd47a4275" + name = "github.com/zondax/ledger-go" + packages = ["."] + pruneopts = "UT" + revision = "918a8a722678b284fc313bd9f2c28df6458a313f" + version = "v0.7.0" + [[projects]] digest = "1:578bbe25849cdc707dfa01cd316556198df9df317fc1608fd2bbbf8967af9785" name = "golang.org/x/crypto" @@ -154,11 +154,11 @@ analyzer-name = "dep" analyzer-version = 1 input-imports = [ - "github.com/ZondaX/ledger-go", "github.com/btcsuite/btcd/btcec", "github.com/stretchr/testify/assert", "github.com/stretchr/testify/require", "github.com/tendermint/tendermint/crypto", + "github.com/zondax/ledger-go", ] solver-name = "gps-cdcl" solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml index b154c61..c7d1059 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -1,10 +1,10 @@ [[constraint]] - name = "github.com/ZondaX/ledger-go" - version = "v0.6.0" + name = "github.com/zondax/ledger-go" + version = "v0.7.0" [prune] go-tests = true unused-packages = true [[prune.project]] - name = "github.com/ZondaX/hid" + name = "github.com/zondax/hid" unused-packages = false diff --git a/user_app.go b/user_app.go index bc13efc..d231419 100644 --- a/user_app.go +++ b/user_app.go @@ -18,7 +18,7 @@ package ledger_cosmos_go import ( "fmt" - "github.com/ZondaX/ledger-go" + "github.com/zondax/ledger-go" "math" ) diff --git a/validator_app.go b/validator_app.go index 4680c57..270bb5a 100644 --- a/validator_app.go +++ b/validator_app.go @@ -17,7 +17,7 @@ package ledger_cosmos_go import ( - "github.com/ZondaX/ledger-go" + "github.com/zondax/ledger-go" "fmt" "math" )