vendor: Replace Sirupsen/logrus with sirupsen/logrus

With:

  $ git mv vendor/github.com/{S,s}irupsen
  $ sed -i 's/Sirupsen/sirupsen/g' $(git grep -l Sirupsen)

catching up with the upstream lowercasing [1,2,3,4].  Because of the
compatibility issues discussed in [3], some consumers may prefer to
use the old uppercase version until they have time to update their
other Logrus consumers to the new lowercase form.

[1]: https://github.com/sirupsen/logrus/blame/v1.0.3/README.md#L6
[2]: https://github.com/sirupsen/logrus/pull/384
[3]: https://github.com/sirupsen/logrus/issues/570#issuecomment-313933276
[4]: https://github.com/sirupsen/logrus/issues/553
This commit is contained in:
W. Trevor King 2017-11-03 08:10:58 -07:00
parent 03983e2cdc
commit 72ac04e7ca
41 changed files with 7 additions and 7 deletions

View File

@ -10,7 +10,7 @@ import (
"os"
"strings"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/vbatts/go-mtree"
)

2
glide.lock generated
View File

@ -1,7 +1,7 @@
hash: 72477bc1ec8c50d432740cbf3940cae19387d596c02f1046c7e989458462e536
updated: 2017-10-20T11:31:42.730083725+02:00
imports:
- name: github.com/Sirupsen/logrus
- name: github.com/sirupsen/logrus
version: f006c2ac4710855cf0f916dd6b77acf6b048dc6e
- name: golang.org/x/crypto
version: 1351f936d976c60a0a48d728281922cf63eafb8d

View File

@ -6,7 +6,7 @@ import:
- package: golang.org/x/crypto
subpackages:
- ripemd160
- package: github.com/Sirupsen/logrus
- package: github.com/sirupsen/logrus
version: ^1.0.0
- package: golang.org/x/sys
version: 8dbc5d05d6edcc104950cc299a1ce6641235bc86

2
tar.go
View File

@ -9,7 +9,7 @@ import (
"path/filepath"
"strings"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/vbatts/go-mtree/pkg/govis"
)

View File

@ -5,7 +5,7 @@ import (
"os"
"sort"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
)
// DefaultUpdateKeywords is the default set of keywords that can take updates to the files on disk

View File

@ -13,7 +13,7 @@ import (
"testing"
"time"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
)
func init() {

View File

@ -7,7 +7,7 @@ import (
"strings"
"time"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/vbatts/go-mtree/pkg/govis"
)