Skip to content

Commit cfc72fe

Browse files
authored
Upgrade to latest go-git version. (#124)
Do small changes to be able to use the last go-git v4 version.
1 parent 9f6facd commit cfc72fe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: go
22
sudo: false
33
go:
4-
- 1.7
54
- 1.8
5+
- 1.9
66
- tip
77
matrix:
88
fast_finish: true

commits.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func (commitsTable) Children() []sql.Node {
5858
}
5959

6060
type commitIter struct {
61-
i *object.CommitIter
61+
i object.CommitIter
6262
}
6363

6464
func (i *commitIter) Next() (sql.Row, error) {

database_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/src-d/go-git-fixtures"
1010
"github.com/stretchr/testify/assert"
11-
"gopkg.in/src-d/go-billy.v2/memfs"
11+
"gopkg.in/src-d/go-billy.v3/memfs"
1212
"gopkg.in/src-d/go-git.v4"
1313
"gopkg.in/src-d/go-git.v4/storage/filesystem"
1414
)

0 commit comments

Comments
 (0)