Skip to content

Commit 612b799

Browse files
committed
bump 2.0.0
1 parent 3093ea2 commit 612b799

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ package main
3030
import (
3131
"time"
3232

33-
"github.com/globocom/go-buffer"
33+
"github.com/globocom/go-buffer/v2"
3434
)
3535

3636
func main() {
@@ -44,7 +44,7 @@ func main() {
4444
}
4545
}),
4646
)
47-
// ensure the buffer
47+
// ensure the buffer
4848
defer buff.Close()
4949

5050
buff.Push("item 1")
@@ -68,7 +68,7 @@ package main
6868
import (
6969
"time"
7070

71-
"github.com/globocom/go-buffer"
71+
"github.com/globocom/go-buffer/v2"
7272
)
7373

7474
func main() {
@@ -106,7 +106,7 @@ package main
106106
import (
107107
"time"
108108

109-
"github.com/globocom/go-buffer"
109+
"github.com/globocom/go-buffer/v2"
110110
)
111111

112112
func main() {

bench_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package buffer_test
33
import (
44
"testing"
55

6-
"github.com/globocom/go-buffer"
6+
"github.com/globocom/go-buffer/v2"
77
)
88

99
func BenchmarkBuffer(b *testing.B) {

buffer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
. "github.com/onsi/ginkgo"
77
. "github.com/onsi/gomega"
88

9-
"github.com/globocom/go-buffer"
9+
"github.com/globocom/go-buffer/v2"
1010
)
1111

1212
var _ = Describe("Buffer", func() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/globocom/go-buffer
1+
module github.com/globocom/go-buffer/v2
22

33
go 1.13
44

options_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
. "github.com/onsi/ginkgo"
77
. "github.com/onsi/gomega"
88

9-
"github.com/globocom/go-buffer"
9+
"github.com/globocom/go-buffer/v2"
1010
)
1111

1212
var _ = Describe("Options", func() {

0 commit comments

Comments
 (0)