Skip to content

Commit

Permalink
update module tag (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aiee authored May 6, 2021
1 parent 542ed24 commit 5c0dc71
Show file tree
Hide file tree
Showing 27 changed files with 42 additions and 42 deletions.
2 changes: 1 addition & 1 deletion basic_example/graph_client_basic_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package main
import (
"fmt"

nebula "github.com/vesoft-inc/nebula-go"
nebula "github.com/vesoft-inc/nebula-go/v2"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"time"

"github.com/stretchr/testify/assert"
"github.com/vesoft-inc/nebula-go/nebula/graph"
"github.com/vesoft-inc/nebula-go/v2/nebula/graph"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"time"

"github.com/facebook/fbthrift/thrift/lib/go/thrift"
"github.com/vesoft-inc/nebula-go/nebula/graph"
"github.com/vesoft-inc/nebula-go/v2/nebula/graph"
)

type connection struct {
Expand Down
2 changes: 1 addition & 1 deletion connection_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"sync"
"time"

graph "github.com/vesoft-inc/nebula-go/nebula/graph"
graph "github.com/vesoft-inc/nebula-go/v2/nebula/graph"
)

type ConnectionPool struct {
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/vesoft-inc/nebula-go
module github.com/vesoft-inc/nebula-go/v2

go 1.13

Expand Down
2 changes: 1 addition & 1 deletion gorountines_example/graph_client_goroutines_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"sync"
"time"

nebula "github.com/vesoft-inc/nebula-go"
nebula "github.com/vesoft-inc/nebula-go/v2"
)

const (
Expand Down
18 changes: 9 additions & 9 deletions nebula-docker-compose/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.4'
services:
metad0:
image: vesoft/nebula-metad:v2-nightly
image: vesoft/nebula-metad:v2.0.0
environment:
USER: root
TZ: "${TZ}"
Expand Down Expand Up @@ -35,7 +35,7 @@ services:
- SYS_PTRACE

metad1:
image: vesoft/nebula-metad:v2-nightly
image: vesoft/nebula-metad:v2.0.0
environment:
USER: root
TZ: "${TZ}"
Expand Down Expand Up @@ -69,7 +69,7 @@ services:
- SYS_PTRACE

metad2:
image: vesoft/nebula-metad:v2-nightly
image: vesoft/nebula-metad:v2.0.0
environment:
USER: root
TZ: "${TZ}"
Expand Down Expand Up @@ -103,7 +103,7 @@ services:
- SYS_PTRACE

storaged0:
image: vesoft/nebula-storaged:v2-nightly
image: vesoft/nebula-storaged:v2.0.0
environment:
USER: root
TZ: "${TZ}"
Expand Down Expand Up @@ -141,7 +141,7 @@ services:
- SYS_PTRACE

storaged1:
image: vesoft/nebula-storaged:v2-nightly
image: vesoft/nebula-storaged:v2.0.0
environment:
USER: root
TZ: "${TZ}"
Expand Down Expand Up @@ -179,7 +179,7 @@ services:
- SYS_PTRACE

storaged2:
image: vesoft/nebula-storaged:v2-nightly
image: vesoft/nebula-storaged:v2.0.0
environment:
USER: root
TZ: "${TZ}"
Expand Down Expand Up @@ -217,7 +217,7 @@ services:
- SYS_PTRACE

graphd:
image: vesoft/nebula-graphd:v2-nightly
image: vesoft/nebula-graphd:v2.0.0
environment:
USER: root
TZ: "${TZ}"
Expand Down Expand Up @@ -253,7 +253,7 @@ services:
- SYS_PTRACE

graphd1:
image: vesoft/nebula-graphd:v2-nightly
image: vesoft/nebula-graphd:v2.0.0
environment:
USER: root
TZ: "${TZ}"
Expand Down Expand Up @@ -288,7 +288,7 @@ services:
- SYS_PTRACE

graphd2:
image: vesoft/nebula-graphd:v2-nightly
image: vesoft/nebula-graphd:v2.0.0
environment:
USER: root
TZ: "${TZ}"
Expand Down
2 changes: 1 addition & 1 deletion nebula/graph/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nebula/graph/graph_service-remote/graph_service-remote.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nebula/graph/graphservice.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nebula/graph/ttypes.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nebula/meta/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nebula/meta/meta_service-remote/meta_service-remote.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nebula/meta/metaservice.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nebula/meta/ttypes.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions nebula/storage/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions nebula/storage/generalstorageservice.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions nebula/storage/graphstorageservice.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions nebula/storage/storageadminservice.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions nebula/storage/ttypes.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions result_set.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"sort"
"strings"

"github.com/vesoft-inc/nebula-go/nebula"
"github.com/vesoft-inc/nebula-go/nebula/graph"
"github.com/vesoft-inc/nebula-go/v2/nebula"
"github.com/vesoft-inc/nebula-go/v2/nebula/graph"
)

type ResultSet struct {
Expand Down
4 changes: 2 additions & 2 deletions result_set_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/vesoft-inc/nebula-go/nebula"
"github.com/vesoft-inc/nebula-go/nebula/graph"
"github.com/vesoft-inc/nebula-go/v2/nebula"
"github.com/vesoft-inc/nebula-go/v2/nebula/graph"
)

func TestIsEmpty(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion session.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"fmt"

"github.com/facebook/fbthrift/thrift/lib/go/thrift"
graph "github.com/vesoft-inc/nebula-go/nebula/graph"
graph "github.com/vesoft-inc/nebula-go/v2/nebula/graph"
)

type Session struct {
Expand Down
2 changes: 1 addition & 1 deletion value_wrapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strconv"
"strings"

"github.com/vesoft-inc/nebula-go/nebula"
"github.com/vesoft-inc/nebula-go/v2/nebula"
)

type ValueWrapper struct {
Expand Down

0 comments on commit 5c0dc71

Please sign in to comment.