Skip to content

Commit 2e7dbae

Browse files
authored
chore: change package to stepzen-dev (#2)
1 parent 84b2737 commit 2e7dbae

29 files changed

+50
-50
lines changed

callable.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"regexp"
1212
"strings"
1313

14-
"github.com/blues/jsonata-go/jlib"
15-
"github.com/blues/jsonata-go/jparse"
16-
"github.com/blues/jsonata-go/jtypes"
14+
"github.com/stepzen-dev/jsonata-go/jlib"
15+
"github.com/stepzen-dev/jsonata-go/jparse"
16+
"github.com/stepzen-dev/jsonata-go/jtypes"
1717
)
1818

1919
type callableName struct {

callable_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"strings"
1414
"testing"
1515

16-
"github.com/blues/jsonata-go/jparse"
17-
"github.com/blues/jsonata-go/jtypes"
16+
"github.com/stepzen-dev/jsonata-go/jparse"
17+
"github.com/stepzen-dev/jsonata-go/jtypes"
1818
)
1919

2020
var (

env.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"strings"
1212
"unicode/utf8"
1313

14-
"github.com/blues/jsonata-go/jlib"
15-
"github.com/blues/jsonata-go/jparse"
16-
"github.com/blues/jsonata-go/jtypes"
14+
"github.com/stepzen-dev/jsonata-go/jlib"
15+
"github.com/stepzen-dev/jsonata-go/jparse"
16+
"github.com/stepzen-dev/jsonata-go/jtypes"
1717
)
1818

1919
type environment struct {

error.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"fmt"
1010
"regexp"
1111

12-
"github.com/blues/jsonata-go/jtypes"
12+
"github.com/stepzen-dev/jsonata-go/jtypes"
1313
)
1414

1515
// ErrUndefined is returned by the evaluation methods when

eval.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"reflect"
1111
"sort"
1212

13-
"github.com/blues/jsonata-go/jlib"
14-
"github.com/blues/jsonata-go/jparse"
15-
"github.com/blues/jsonata-go/jtypes"
13+
"github.com/stepzen-dev/jsonata-go/jlib"
14+
"github.com/stepzen-dev/jsonata-go/jparse"
15+
"github.com/stepzen-dev/jsonata-go/jtypes"
1616
)
1717

1818
var undefined reflect.Value

eval_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"strings"
1212
"testing"
1313

14-
"github.com/blues/jsonata-go/jlib"
15-
"github.com/blues/jsonata-go/jparse"
16-
"github.com/blues/jsonata-go/jtypes"
14+
"github.com/stepzen-dev/jsonata-go/jlib"
15+
"github.com/stepzen-dev/jsonata-go/jparse"
16+
"github.com/stepzen-dev/jsonata-go/jtypes"
1717
)
1818

1919
type evalTestCase struct {

example_eval_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"fmt"
1010
"log"
1111

12-
jsonata "github.com/blues/jsonata-go"
12+
jsonata "github.com/stepzen-dev/jsonata-go"
1313
)
1414

1515
const jsonString = `

example_exts_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"fmt"
99
"log"
1010

11-
jsonata "github.com/blues/jsonata-go"
11+
jsonata "github.com/stepzen-dev/jsonata-go"
1212
"golang.org/x/text/cases"
1313
"golang.org/x/text/language"
1414
)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/blues/jsonata-go
1+
module github.com/stepzen-dev/jsonata-go
22

33
go 1.20
44

jlib/aggregate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"fmt"
99
"reflect"
1010

11-
"github.com/blues/jsonata-go/jtypes"
11+
"github.com/stepzen-dev/jsonata-go/jtypes"
1212
)
1313

1414
// Sum returns the total of an array of numbers. If the array is

0 commit comments

Comments
 (0)