This is an automated email from the ASF dual-hosted git repository.

jgemignani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age.git


The following commit(s) were added to refs/heads/master by this push:
     new 327014a  Remove incubating from GO driver
327014a is described below

commit 327014a2b522536514de134c2a4a3479fe5f0044
Author: John Gemignani <[email protected]>
AuthorDate: Thu Oct 20 15:10:13 2022 -0700

    Remove incubating from GO driver
    
    Removed incubating from GO driver.
---
 drivers/golang/age/builder.go                | 2 +-
 drivers/golang/age/mapper.go                 | 2 +-
 drivers/golang/go.mod                        | 2 +-
 drivers/golang/samples/age_wrapper_sample.go | 2 +-
 drivers/golang/samples/sql_api_sample.go     | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/golang/age/builder.go b/drivers/golang/age/builder.go
index 7fa6d3b..be1c4bb 100644
--- a/drivers/golang/age/builder.go
+++ b/drivers/golang/age/builder.go
@@ -26,7 +26,7 @@ import (
        "strings"
 
        "github.com/antlr/antlr4/runtime/Go/antlr"
-       "github.com/apache/incubator-age/drivers/golang/parser"
+       "github.com/apache/age/drivers/golang/parser"
 )
 
 const MaxUint = ^uint(0)
diff --git a/drivers/golang/age/mapper.go b/drivers/golang/age/mapper.go
index 0994079..5857b13 100644
--- a/drivers/golang/age/mapper.go
+++ b/drivers/golang/age/mapper.go
@@ -24,7 +24,7 @@ import (
        "strings"
 
        "github.com/antlr/antlr4/runtime/Go/antlr"
-       "github.com/apache/incubator-age/drivers/golang/parser"
+       "github.com/apache/age/drivers/golang/parser"
 )
 
 type AGMapper struct {
diff --git a/drivers/golang/go.mod b/drivers/golang/go.mod
index c7082b3..81525d6 100644
--- a/drivers/golang/go.mod
+++ b/drivers/golang/go.mod
@@ -17,7 +17,7 @@
 //  * under the License.
 //  */
 
-module github.com/apache/incubator-age/drivers/golang
+module github.com/apache/age/drivers/golang
 
 go 1.16
 
diff --git a/drivers/golang/samples/age_wrapper_sample.go 
b/drivers/golang/samples/age_wrapper_sample.go
index ac611fd..6040ac5 100644
--- a/drivers/golang/samples/age_wrapper_sample.go
+++ b/drivers/golang/samples/age_wrapper_sample.go
@@ -21,7 +21,7 @@ package main
 import (
        "fmt"
 
-       "github.com/apache/incubator-age/drivers/golang/age"
+       "github.com/apache/age/drivers/golang/age"
 )
 
 // Do cypher query to AGE with Age API
diff --git a/drivers/golang/samples/sql_api_sample.go 
b/drivers/golang/samples/sql_api_sample.go
index e0a17fc..491532f 100644
--- a/drivers/golang/samples/sql_api_sample.go
+++ b/drivers/golang/samples/sql_api_sample.go
@@ -22,7 +22,7 @@ import (
        "database/sql"
        "fmt"
 
-       "github.com/apache/incubator-age/drivers/golang/age"
+       "github.com/apache/age/drivers/golang/age"
 )
 
 // Do cypher query to AGE with database/sql Tx API transaction conrol

Reply via email to