Skip to content

Commit

Permalink
MINOR: [Release] Update versions for 17.0.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
raulcd authored and kou committed Aug 30, 2024
1 parent ae4de0f commit e5a8b07
Show file tree
Hide file tree
Showing 478 changed files with 1,744 additions and 1,744 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
Apache Arrow for Go
===================

[![Go Reference](https://pkg.go.dev/badge/github.com/apache/arrow/go/v16.svg)](https://pkg.go.dev/github.com/apache/arrow/go/v16)
[![Go Reference](https://pkg.go.dev/badge/github.com/apache/arrow/go/v17.svg)](https://pkg.go.dev/github.com/apache/arrow/go/v17)

[Apache Arrow][arrow] is a cross-language development platform for in-memory
data. It specifies a standardized language-independent columnar memory format
Expand Down
8 changes: 4 additions & 4 deletions arrow/_examples/helloworld/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ package main
import (
"os"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/array"
"github.com/apache/arrow/go/v16/arrow/math"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/array"
"github.com/apache/arrow/go/v17/arrow/math"
"github.com/apache/arrow/go/v17/arrow/memory"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion arrow/_tools/tmpl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"strings"
"text/template"

"github.com/apache/arrow/go/v16/internal/json"
"github.com/apache/arrow/go/v17/internal/json"
)

const Ext = ".tmpl"
Expand Down
4 changes: 2 additions & 2 deletions arrow/array.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ package arrow
import (
"fmt"

"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v16/internal/json"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/apache/arrow/go/v17/internal/json"
)

// ArrayData is the underlying memory and metadata of an Arrow array, corresponding
Expand Down
6 changes: 3 additions & 3 deletions arrow/array/array.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ package array
import (
"sync/atomic"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/bitutil"
"github.com/apache/arrow/go/v16/arrow/internal/debug"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/bitutil"
"github.com/apache/arrow/go/v17/arrow/internal/debug"
)

const (
Expand Down
10 changes: 5 additions & 5 deletions arrow/array/array_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ package array_test
import (
"testing"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/array"
"github.com/apache/arrow/go/v16/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v16/internal/types"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/array"
"github.com/apache/arrow/go/v17/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/apache/arrow/go/v17/internal/types"
"github.com/stretchr/testify/assert"
)

Expand Down
6 changes: 3 additions & 3 deletions arrow/array/binary.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ import (
"strings"
"unsafe"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v16/internal/json"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/apache/arrow/go/v17/internal/json"
)

type BinaryLike interface {
Expand Down
6 changes: 3 additions & 3 deletions arrow/array/binary_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import (
"reflect"
"testing"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/bitutil"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/bitutil"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/stretchr/testify/assert"
)

Expand Down
8 changes: 4 additions & 4 deletions arrow/array/binarybuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ import (
"sync/atomic"
"unsafe"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/internal/debug"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v16/internal/json"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/internal/debug"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/apache/arrow/go/v17/internal/json"
)

// A BinaryBuilder is used to build a Binary array using the Append methods.
Expand Down
6 changes: 3 additions & 3 deletions arrow/array/binarybuilder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import (
"bytes"
"testing"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/array"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/array"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/stretchr/testify/assert"
)

Expand Down
8 changes: 4 additions & 4 deletions arrow/array/boolean.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ import (
"strconv"
"strings"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/bitutil"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v16/internal/json"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/bitutil"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/apache/arrow/go/v17/internal/json"
)

// A type which represents an immutable sequence of boolean values.
Expand Down
4 changes: 2 additions & 2 deletions arrow/array/boolean_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"strings"
"testing"

"github.com/apache/arrow/go/v16/arrow/array"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v17/arrow/array"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/stretchr/testify/assert"
)

Expand Down
10 changes: 5 additions & 5 deletions arrow/array/booleanbuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ import (
"strconv"
"sync/atomic"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/bitutil"
"github.com/apache/arrow/go/v16/arrow/internal/debug"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v16/internal/json"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/bitutil"
"github.com/apache/arrow/go/v17/arrow/internal/debug"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/apache/arrow/go/v17/internal/json"
)

type BooleanBuilder struct {
Expand Down
6 changes: 3 additions & 3 deletions arrow/array/booleanbuilder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ package array_test
import (
"testing"

"github.com/apache/arrow/go/v16/arrow/array"
"github.com/apache/arrow/go/v16/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v17/arrow/array"
"github.com/apache/arrow/go/v17/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/stretchr/testify/assert"
)

Expand Down
8 changes: 4 additions & 4 deletions arrow/array/bufferbuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ import (
"sync/atomic"
"unsafe"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/bitutil"
"github.com/apache/arrow/go/v16/arrow/internal/debug"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/bitutil"
"github.com/apache/arrow/go/v17/arrow/internal/debug"
"github.com/apache/arrow/go/v17/arrow/memory"
)

type bufBuilder interface {
Expand Down
2 changes: 1 addition & 1 deletion arrow/array/bufferbuilder_byte.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package array

import "github.com/apache/arrow/go/v16/arrow/memory"
import "github.com/apache/arrow/go/v17/arrow/memory"

type byteBufferBuilder struct {
bufferBuilder
Expand Down
6 changes: 3 additions & 3 deletions arrow/array/bufferbuilder_numeric.gen.go

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

6 changes: 3 additions & 3 deletions arrow/array/bufferbuilder_numeric.gen.go.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
package array

import (
"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/bitutil"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/bitutil"
"github.com/apache/arrow/go/v17/arrow/memory"
)

{{range .In}}
Expand Down
4 changes: 2 additions & 2 deletions arrow/array/bufferbuilder_numeric_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"testing"
"unsafe"

"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v16/arrow/endian"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/apache/arrow/go/v17/arrow/endian"
"github.com/stretchr/testify/assert"
)

Expand Down
8 changes: 4 additions & 4 deletions arrow/array/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ import (
"fmt"
"sync/atomic"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/bitutil"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v16/internal/json"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/bitutil"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/apache/arrow/go/v17/internal/json"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions arrow/array/builder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ package array
import (
"testing"

"github.com/apache/arrow/go/v16/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v17/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/stretchr/testify/assert"
)

Expand Down
6 changes: 3 additions & 3 deletions arrow/array/compare.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import (
"fmt"
"math"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/float16"
"github.com/apache/arrow/go/v16/internal/bitutils"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/float16"
"github.com/apache/arrow/go/v17/internal/bitutils"
)

// RecordEqual reports whether the two provided records are equal.
Expand Down
10 changes: 5 additions & 5 deletions arrow/array/compare_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ import (
"sort"
"testing"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/array"
"github.com/apache/arrow/go/v16/arrow/float16"
"github.com/apache/arrow/go/v16/arrow/internal/arrdata"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/array"
"github.com/apache/arrow/go/v17/arrow/float16"
"github.com/apache/arrow/go/v17/arrow/internal/arrdata"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/stretchr/testify/assert"
)

Expand Down
14 changes: 7 additions & 7 deletions arrow/array/concat.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ import (
"math/bits"
"unsafe"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/bitutil"
"github.com/apache/arrow/go/v16/arrow/encoded"
"github.com/apache/arrow/go/v16/arrow/internal/debug"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v16/internal/bitutils"
"github.com/apache/arrow/go/v16/internal/utils"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/bitutil"
"github.com/apache/arrow/go/v17/arrow/encoded"
"github.com/apache/arrow/go/v17/arrow/internal/debug"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/apache/arrow/go/v17/internal/bitutils"
"github.com/apache/arrow/go/v17/internal/utils"
)

// Concatenate creates a new arrow.Array which is the concatenation of the
Expand Down
10 changes: 5 additions & 5 deletions arrow/array/concat_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ import (
"strings"
"testing"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/array"
"github.com/apache/arrow/go/v16/arrow/bitutil"
"github.com/apache/arrow/go/v16/arrow/internal/testing/gen"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/array"
"github.com/apache/arrow/go/v17/arrow/bitutil"
"github.com/apache/arrow/go/v17/arrow/internal/testing/gen"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
Expand Down
6 changes: 3 additions & 3 deletions arrow/array/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ import (
"sync/atomic"
"unsafe"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/internal/debug"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/internal/debug"
"github.com/apache/arrow/go/v17/arrow/memory"
)

// Data represents the memory and metadata of an Arrow array.
Expand Down
4 changes: 2 additions & 2 deletions arrow/array/data_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ package array
import (
"testing"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/stretchr/testify/assert"
)

Expand Down
12 changes: 6 additions & 6 deletions arrow/array/decimal128.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ import (
"strings"
"sync/atomic"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/bitutil"
"github.com/apache/arrow/go/v16/arrow/decimal128"
"github.com/apache/arrow/go/v16/arrow/internal/debug"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v16/internal/json"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/bitutil"
"github.com/apache/arrow/go/v17/arrow/decimal128"
"github.com/apache/arrow/go/v17/arrow/internal/debug"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/apache/arrow/go/v17/internal/json"
)

// A type which represents an immutable sequence of 128-bit decimal values.
Expand Down
8 changes: 4 additions & 4 deletions arrow/array/decimal128_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ package array_test
import (
"testing"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/array"
"github.com/apache/arrow/go/v16/arrow/decimal128"
"github.com/apache/arrow/go/v16/arrow/memory"
"github.com/apache/arrow/go/v17/arrow"
"github.com/apache/arrow/go/v17/arrow/array"
"github.com/apache/arrow/go/v17/arrow/decimal128"
"github.com/apache/arrow/go/v17/arrow/memory"
"github.com/stretchr/testify/assert"
)

Expand Down
Loading

0 comments on commit e5a8b07

Please sign in to comment.