Skip to content

Commit 20aff22

Browse files
committed
chore: Move to new organization
1 parent 38f36c4 commit 20aff22

File tree

8 files changed

+12
-11
lines changed

8 files changed

+12
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
[![Go Reference](https://pkg.go.dev/badge/github.com/tabbed/pqtype.svg)](https://pkg.go.dev/github.com/tabbed/pqtype)
2-
[![go](https://github.com/tabbed/pqtype/actions/workflows/ci.yml/badge.svg)](https://github.com/tabbed/pqtype/actions/workflows/ci.yml)
1+
[![Go Reference](https://pkg.go.dev/badge/github.com/sqlc-dev/pqtype.svg)](https://pkg.go.dev/github.com/sqlc-dev/pqtype)
2+
[![go](https://github.com/sqlc-dev/pqtype/actions/workflows/ci.yml/badge.svg)](https://github.com/sqlc-dev/pqtype/actions/workflows/ci.yml)
33

44
# pqtype
55

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/tabbed/pqtype
1+
module github.com/sqlc-dev/pqtype
22

33
go 1.13

tests/cidr_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66

77
"github.com/google/go-cmp/cmp"
8-
"github.com/tabbed/pqtype"
8+
"github.com/sqlc-dev/pqtype"
99
)
1010

1111
func TestCIDR(t *testing.T) {

tests/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
module github.com/tabbed/pqtype/tests
1+
module github.com/sqlc-dev/pqtype/tests
22

33
go 1.17
44

55
require (
66
github.com/jackc/pgio v1.0.0 // indirect
77
github.com/jackc/pgtype v1.8.1 // indirect
88
github.com/lib/pq v1.10.2 // indirect
9-
github.com/tabbed/pqtype v1.0.0
9+
github.com/sqlc-dev/pqtype v1.0.0
1010
)
1111

1212
require github.com/google/go-cmp v0.5.6 // indirect
1313

14-
replace github.com/tabbed/pqtype => ../
14+
replace github.com/sqlc-dev/pqtype => ../

tests/inet_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66

77
"github.com/google/go-cmp/cmp"
8-
"github.com/tabbed/pqtype"
8+
"github.com/sqlc-dev/pqtype"
99
)
1010

1111
func TestInet(t *testing.T) {

tests/json_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"testing"
77

88
"github.com/google/go-cmp/cmp"
9-
"github.com/tabbed/pqtype"
9+
"github.com/sqlc-dev/pqtype"
1010
)
1111

1212
func TestJSONRawMessage(t *testing.T) {

tests/macaddr8_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build !postgres9.6
12
// +build !postgres9.6
23

34
package tests
@@ -7,7 +8,7 @@ import (
78
"testing"
89

910
"github.com/google/go-cmp/cmp"
10-
"github.com/tabbed/pqtype"
11+
"github.com/sqlc-dev/pqtype"
1112
)
1213

1314
// https://www.postgresql.org/docs/current/datatype-net-types.html#DATATYPE-MACADDR8

tests/macaddr_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66

77
"github.com/google/go-cmp/cmp"
8-
"github.com/tabbed/pqtype"
8+
"github.com/sqlc-dev/pqtype"
99
)
1010

1111
// https://www.postgresql.org/docs/current/datatype-net-types.html#DATATYPE-MACADDR

0 commit comments

Comments
 (0)