We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f6facd commit cfc72feCopy full SHA for cfc72fe
.travis.yml
@@ -1,8 +1,8 @@
1
language: go
2
sudo: false
3
go:
4
- - 1.7
5
- 1.8
+ - 1.9
6
- tip
7
matrix:
8
fast_finish: true
commits.go
@@ -58,7 +58,7 @@ func (commitsTable) Children() []sql.Node {
58
}
59
60
type commitIter struct {
61
- i *object.CommitIter
+ i object.CommitIter
62
63
64
func (i *commitIter) Next() (sql.Row, error) {
database_test.go
@@ -8,7 +8,7 @@ import (
9
"github.com/src-d/go-git-fixtures"
10
"github.com/stretchr/testify/assert"
11
- "gopkg.in/src-d/go-billy.v2/memfs"
+ "gopkg.in/src-d/go-billy.v3/memfs"
12
"gopkg.in/src-d/go-git.v4"
13
"gopkg.in/src-d/go-git.v4/storage/filesystem"
14
)
0 commit comments