aboutsummaryrefslogtreecommitdiffstats
path: root/formats
diff options
context:
space:
mode:
Diffstat (limited to 'formats')
-rw-r--r--formats/idxfile/decoder.go2
-rw-r--r--formats/idxfile/idxfile.go2
-rw-r--r--formats/objfile/common.go2
-rw-r--r--formats/objfile/common_test.go2
-rw-r--r--formats/objfile/reader.go2
-rw-r--r--formats/objfile/reader_test.go2
-rw-r--r--formats/objfile/writer.go2
-rw-r--r--formats/objfile/writer_test.go2
-rw-r--r--formats/packfile/decoder.go2
-rw-r--r--formats/packfile/decoder_test.go4
-rw-r--r--formats/packfile/parser.go4
-rw-r--r--formats/packfile/parser_test.go4
-rw-r--r--formats/packfile/read_recaller.go2
-rw-r--r--formats/packfile/read_recaller_impl_test.go4
-rw-r--r--formats/packfile/seekable.go2
-rw-r--r--formats/packfile/stream.go2
16 files changed, 20 insertions, 20 deletions
diff --git a/formats/idxfile/decoder.go b/formats/idxfile/decoder.go
index 72a9338..9cd249d 100644
--- a/formats/idxfile/decoder.go
+++ b/formats/idxfile/decoder.go
@@ -6,7 +6,7 @@ import (
"errors"
"io"
- "gopkg.in/src-d/go-git.v3/core"
+ "gopkg.in/src-d/go-git.v4/core"
)
var (
diff --git a/formats/idxfile/idxfile.go b/formats/idxfile/idxfile.go
index 5f12dad..217027d 100644
--- a/formats/idxfile/idxfile.go
+++ b/formats/idxfile/idxfile.go
@@ -1,6 +1,6 @@
package idxfile
-import "gopkg.in/src-d/go-git.v3/core"
+import "gopkg.in/src-d/go-git.v4/core"
const (
// VersionSupported is the only idx version supported.
diff --git a/formats/objfile/common.go b/formats/objfile/common.go
index 2f0585f..839f92c 100644
--- a/formats/objfile/common.go
+++ b/formats/objfile/common.go
@@ -5,7 +5,7 @@ import (
"io"
"strconv"
- "gopkg.in/src-d/go-git.v3/core"
+ "gopkg.in/src-d/go-git.v4/core"
)
var (
diff --git a/formats/objfile/common_test.go b/formats/objfile/common_test.go
index 0c5a4cd..e443e73 100644
--- a/formats/objfile/common_test.go
+++ b/formats/objfile/common_test.go
@@ -6,7 +6,7 @@ import (
"testing"
. "gopkg.in/check.v1"
- "gopkg.in/src-d/go-git.v3/core"
+ "gopkg.in/src-d/go-git.v4/core"
)
type objfileFixture struct {
diff --git a/formats/objfile/reader.go b/formats/objfile/reader.go
index b3c2e5c..5b17da0 100644
--- a/formats/objfile/reader.go
+++ b/formats/objfile/reader.go
@@ -4,7 +4,7 @@ import (
"errors"
"io"
- "gopkg.in/src-d/go-git.v3/core"
+ "gopkg.in/src-d/go-git.v4/core"
"github.com/klauspost/compress/zlib"
)
diff --git a/formats/objfile/reader_test.go b/formats/objfile/reader_test.go
index b2c3d0c..ec191f6 100644
--- a/formats/objfile/reader_test.go
+++ b/formats/objfile/reader_test.go
@@ -8,7 +8,7 @@ import (
"io/ioutil"
. "gopkg.in/check.v1"
- "gopkg.in/src-d/go-git.v3/core"
+ "gopkg.in/src-d/go-git.v4/core"
"github.com/klauspost/compress/zlib"
)
diff --git a/formats/objfile/writer.go b/formats/objfile/writer.go
index d9d40f0..8337a3a 100644
--- a/formats/objfile/writer.go
+++ b/formats/objfile/writer.go
@@ -4,7 +4,7 @@ import (
"errors"
"io"
- "gopkg.in/src-d/go-git.v3/core"
+ "gopkg.in/src-d/go-git.v4/core"
"github.com/klauspost/compress/zlib"
)
diff --git a/formats/objfile/writer_test.go b/formats/objfile/writer_test.go
index 160491c..ab5a5bf 100644
--- a/formats/objfile/writer_test.go
+++ b/formats/objfile/writer_test.go
@@ -7,7 +7,7 @@ import (
"io"
. "gopkg.in/check.v1"
- "gopkg.in/src-d/go-git.v3/core"
+ "gopkg.in/src-d/go-git.v4/core"
)
type SuiteWriter struct{}
diff --git a/formats/packfile/decoder.go b/formats/packfile/decoder.go
index e8c5c6a..2b5ef88 100644
--- a/formats/packfile/decoder.go
+++ b/formats/packfile/decoder.go
@@ -3,7 +3,7 @@ package packfile
import (
"io"
- "gopkg.in/src-d/go-git.v3/core"
+ "gopkg.in/src-d/go-git.v4/core"
)
// Format specifies if the packfile uses ref-deltas or ofs-deltas.
diff --git a/formats/packfile/decoder_test.go b/formats/packfile/decoder_test.go
index 0c471a2..6bafa4f 100644
--- a/formats/packfile/decoder_test.go
+++ b/formats/packfile/decoder_test.go
@@ -9,8 +9,8 @@ import (
"testing"
"time"
- "gopkg.in/src-d/go-git.v3/core"
- "gopkg.in/src-d/go-git.v3/storage/memory"
+ "gopkg.in/src-d/go-git.v4/core"
+ "gopkg.in/src-d/go-git.v4/storage/memory"
"github.com/dustin/go-humanize"
. "gopkg.in/check.v1"
diff --git a/formats/packfile/parser.go b/formats/packfile/parser.go
index d3463bd..a7c4047 100644
--- a/formats/packfile/parser.go
+++ b/formats/packfile/parser.go
@@ -7,8 +7,8 @@ import (
"fmt"
"io"
- "gopkg.in/src-d/go-git.v3/core"
- "gopkg.in/src-d/go-git.v3/storage/memory"
+ "gopkg.in/src-d/go-git.v4/core"
+ "gopkg.in/src-d/go-git.v4/storage/memory"
)
var (
diff --git a/formats/packfile/parser_test.go b/formats/packfile/parser_test.go
index 12d5f0d..ec9b19a 100644
--- a/formats/packfile/parser_test.go
+++ b/formats/packfile/parser_test.go
@@ -7,8 +7,8 @@ import (
"os"
. "gopkg.in/check.v1"
- "gopkg.in/src-d/go-git.v3/core"
- "gopkg.in/src-d/go-git.v3/storage/memory"
+ "gopkg.in/src-d/go-git.v4/core"
+ "gopkg.in/src-d/go-git.v4/storage/memory"
)
const (
diff --git a/formats/packfile/read_recaller.go b/formats/packfile/read_recaller.go
index 92ab1b2..a4157d1 100644
--- a/formats/packfile/read_recaller.go
+++ b/formats/packfile/read_recaller.go
@@ -1,6 +1,6 @@
package packfile
-import "gopkg.in/src-d/go-git.v3/core"
+import "gopkg.in/src-d/go-git.v4/core"
var (
// ErrDuplicatedObject is returned by Remember if an object appears several
diff --git a/formats/packfile/read_recaller_impl_test.go b/formats/packfile/read_recaller_impl_test.go
index 438439d..8de7e2a 100644
--- a/formats/packfile/read_recaller_impl_test.go
+++ b/formats/packfile/read_recaller_impl_test.go
@@ -6,8 +6,8 @@ import (
"io/ioutil"
"os"
- "gopkg.in/src-d/go-git.v3/core"
- "gopkg.in/src-d/go-git.v3/storage/memory"
+ "gopkg.in/src-d/go-git.v4/core"
+ "gopkg.in/src-d/go-git.v4/storage/memory"
. "gopkg.in/check.v1"
)
diff --git a/formats/packfile/seekable.go b/formats/packfile/seekable.go
index ea1c501..37b4ee9 100644
--- a/formats/packfile/seekable.go
+++ b/formats/packfile/seekable.go
@@ -4,7 +4,7 @@ import (
"io"
"os"
- "gopkg.in/src-d/go-git.v3/core"
+ "gopkg.in/src-d/go-git.v4/core"
)
// Seekable implements ReadRecaller for the io.ReadSeeker of a packfile.
diff --git a/formats/packfile/stream.go b/formats/packfile/stream.go
index 41266b1..34ffd2f 100644
--- a/formats/packfile/stream.go
+++ b/formats/packfile/stream.go
@@ -3,7 +3,7 @@ package packfile
import (
"io"
- "gopkg.in/src-d/go-git.v3/core"
+ "gopkg.in/src-d/go-git.v4/core"
)
// Stream implements ReadRecaller for the io.Reader of a packfile. This