diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index e60cd9b..f9b868b 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -19,5 +19,5 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} repository: vesoft/nebula-console - tags: nightly,v2-nightly + tags: nightly, v3-nightly add_git_labels: true diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 8d483b3..f681e76 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -4,6 +4,7 @@ on: pull_request: branches: - master + - release-** paths-ignore: - '**.md' - '.gitignore' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7dfb4c4..445636a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,6 +70,6 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} repository: vesoft/nebula-console - tags: v2,latest + tags: v3,latest tag_with_ref: true add_git_labels: true diff --git a/README.md b/README.md index 2aa08fd..c4a23b5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Nebula Graph Console -This repository contains the Nebula Graph Console for Nebula Graph 3.0. Nebula Graph Console (Console for short) is a console for Nebula Graph. With Console, you can create a graph schema, import the demonstration `basketballplayer` dataset, and retrieve data. +This repository contains the Nebula Graph Console for Nebula Graph 3.x. Nebula Graph Console (Console for short) is a console for Nebula Graph. With Console, you can create a graph schema, import the demonstration `basketballplayer` dataset, and retrieve data. ## Features diff --git a/go.mod b/go.mod index 3849171..837a1b4 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/vesoft-inc/nebula-console -go 1.11 +go 1.13 require ( github.com/c-bata/go-prompt v0.2.6 @@ -8,7 +8,7 @@ require ( github.com/jievince/liner v1.2.4-0.20211229025353-9af8863139ef github.com/kr/pretty v0.1.0 // indirect github.com/mattn/go-runewidth v0.0.13 // indirect - github.com/vesoft-inc/nebula-go/v3 v3.0.0-20220214062853-d0c59964d0af + github.com/vesoft-inc/nebula-go/v3 v3.2.0 golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 // indirect gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect diff --git a/go.sum b/go.sum index c47d275..df1fbb6 100644 --- a/go.sum +++ b/go.sum @@ -39,8 +39,8 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/vesoft-inc/nebula-go/v3 v3.0.0-20220214062853-d0c59964d0af h1:5z3eC9o+LzDBeA2kRIMgj+k7C8bfSuWh9ffZXljkPzs= -github.com/vesoft-inc/nebula-go/v3 v3.0.0-20220214062853-d0c59964d0af/go.mod h1:+sXv05jYQBARdTbTcIEsWVXCnF/6ttOlDK35xQ6m54s= +github.com/vesoft-inc/nebula-go/v3 v3.2.0 h1:f0IW6W5f91O6FyXAi+kFq1D2bNFXtPtkb/H9WywFGmM= +github.com/vesoft-inc/nebula-go/v3 v3.2.0/go.mod h1:+sXv05jYQBARdTbTcIEsWVXCnF/6ttOlDK35xQ6m54s= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180816055513-1c9583448a9c/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=