Skip to content

Commit

Permalink
update versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
alphadose committed Jul 14, 2022
1 parent fdf27ea commit 1707530
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Benchmarks to support the above claims [here](#benchmarks)
You need Golang [1.18.x](https://go.dev/dl/) or above since this package uses generics

```bash
$ go get github.com/alphadose/zenq@v2.6.2
$ go get github.com/alphadose/zenq@v2.6.3
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/e2e/benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sync"
"testing"

"github.com/alphadose/zenq"
"github.com/alphadose/zenq/v2"
)

const bufferSize = 1 << 12
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/e2e/benchsuite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"sync"
"testing"

"github.com/alphadose/zenq"
"github.com/alphadose/zenq/v2"
)

// wrapper for chan to have exactly the same api as zenq.
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/selector/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"time"

"github.com/alphadose/zenq"
"github.com/alphadose/zenq/v2"
)

type custom1 struct {
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/simple/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"time"

"github.com/alphadose/zenq"
"github.com/alphadose/zenq/v2"
)

// Example item which we will be writing to and reading from the queue
Expand Down
2 changes: 1 addition & 1 deletion examples/selector/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/alphadose/zenq"
"github.com/alphadose/zenq/v2"
)

type custom1 struct {
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"runtime"

"github.com/alphadose/zenq"
"github.com/alphadose/zenq/v2"
)

type payload struct {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/alphadose/zenq
module github.com/alphadose/zenq/v2

go 1.18
2 changes: 1 addition & 1 deletion lib_runtime_linkage.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"unsafe"
_ "unsafe"

"github.com/alphadose/zenq/constants"
"github.com/alphadose/zenq/v2/constants"
)

const cacheLinePadSize = constants.CacheLinePadSize
Expand Down

0 comments on commit 1707530

Please sign in to comment.