Skip to content

Commit

Permalink
bump 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaeleyng committed Sep 8, 2020
1 parent 3093ea2 commit 612b799
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ package main
import (
"time"

"github.com/globocom/go-buffer"
"github.com/globocom/go-buffer/v2"
)

func main() {
Expand All @@ -44,7 +44,7 @@ func main() {
}
}),
)
// ensure the buffer
// ensure the buffer
defer buff.Close()

buff.Push("item 1")
Expand All @@ -68,7 +68,7 @@ package main
import (
"time"

"github.com/globocom/go-buffer"
"github.com/globocom/go-buffer/v2"
)

func main() {
Expand Down Expand Up @@ -106,7 +106,7 @@ package main
import (
"time"

"github.com/globocom/go-buffer"
"github.com/globocom/go-buffer/v2"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion bench_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package buffer_test
import (
"testing"

"github.com/globocom/go-buffer"
"github.com/globocom/go-buffer/v2"
)

func BenchmarkBuffer(b *testing.B) {
Expand Down
2 changes: 1 addition & 1 deletion buffer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

"github.com/globocom/go-buffer"
"github.com/globocom/go-buffer/v2"
)

var _ = Describe("Buffer", func() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/globocom/go-buffer
module github.com/globocom/go-buffer/v2

go 1.13

Expand Down
2 changes: 1 addition & 1 deletion options_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

"github.com/globocom/go-buffer"
"github.com/globocom/go-buffer/v2"
)

var _ = Describe("Options", func() {
Expand Down

0 comments on commit 612b799

Please sign in to comment.