Skip to content

Commit

Permalink
Update dependencies (#11)
Browse files Browse the repository at this point in the history
* Update dependencies

Update bolt and compress dependencies.
Change CI Go 1.12 to Go 1.14 and add Go 1.15
Fixes #10
  • Loading branch information
klauspost committed Aug 18, 2020
1 parent 55d4dc9 commit f9e646b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 268 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ os:
- osx

go:
- 1.12.x
- 1.13.x
- 1.14.x
- 1.15.x
- master

env:
Expand Down Expand Up @@ -46,4 +47,3 @@ deploy:
tags: true
go: '1.13.x'
condition: $TRAVIS_OS_NAME = linux

2 changes: 1 addition & 1 deletion blobstore/boltstore/boltstore.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"time"

"github.com/Vivino/rankdb/blobstore"
"github.com/etcd-io/bbolt"
"go.etcd.io/bbolt"
)

// NewBoltStore returns a new BoltStore.
Expand Down
14 changes: 6 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,17 @@ require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/dimfeld/httppath v0.0.0-20170720192232-ee938bf73598 // indirect
github.com/dimfeld/httptreemux v4.0.1+incompatible // indirect
github.com/etcd-io/bbolt v1.3.3
github.com/go-ini/ini v1.42.0 // indirect
github.com/goadesign/goa v1.4.1
github.com/gofrs/uuid v3.2.0+incompatible // indirect
github.com/google/go-cmp v0.3.0
github.com/google/gxui v0.0.0-20151028112939-f85e0a97b3a4 // indirect
github.com/goreleaser/goreleaser v0.113.0
github.com/hashicorp/go-immutable-radix v0.0.0-20170725221215-8aac27015308 // indirect
github.com/hashicorp/golang-lru v0.5.1
github.com/hashicorp/uuid v0.0.0-20160311170451-ebb0a03e909c // indirect
github.com/klauspost/compress v1.9.1
github.com/klauspost/cpuid v1.2.1 // indirect
github.com/klauspost/compress v1.10.10
github.com/klauspost/readahead v1.3.1
github.com/klauspost/shutdown2 v1.1.0
github.com/kr/pretty v0.1.0 // indirect
github.com/manveru/faker v0.0.0-20160419072036-717f7cf83fb7 // indirect
github.com/manveru/gobdd v0.0.0-20131210092515-f1a17fdd710b // indirect
github.com/mattn/go-colorable v0.0.9
Expand All @@ -40,9 +37,10 @@ require (
github.com/ugorji/go/codec v1.1.7
github.com/yuin/gopher-lua v0.0.0-20160527050859-47f0f792b296 // indirect
github.com/zach-klippenstein/goregen v0.0.0-20160303162051-795b5e3961ea // indirect
go.etcd.io/bbolt v1.3.3 // indirect
golang.org/x/lint v0.0.0-20190409202823-959b441ac422
gopkg.in/ini.v1 v1.42.0 // indirect
go.etcd.io/bbolt v1.3.5
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
golang.org/x/text v0.3.2 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)

go 1.13
Loading

0 comments on commit f9e646b

Please sign in to comment.