Skip to content

Commit

Permalink
[Release] Update versions for 8.0.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Feb 3, 2022
1 parent b39c5a0 commit f0bbed9
Show file tree
Hide file tree
Showing 363 changed files with 1,033 additions and 1,031 deletions.
2 changes: 1 addition & 1 deletion c_glib/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ project('arrow-glib', 'c', 'cpp',
'cpp_std=c++11',
])

version = '7.0.0-SNAPSHOT'
version = '8.0.0-SNAPSHOT'
if version.endswith('-SNAPSHOT')
version_numbers = version.split('-')[0].split('.')
version_tag = version.split('-')[1]
Expand Down
2 changes: 1 addition & 1 deletion ci/scripts/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
_realname=arrow
pkgbase=mingw-w64-${_realname}
pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}"
pkgver=6.0.1.9000
pkgver=7.0.0.9000
pkgrel=8000
pkgdesc="Apache Arrow is a cross-language development platform for in-memory data (mingw-w64)"
arch=("any")
Expand Down
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if(POLICY CMP0074)
cmake_policy(SET CMP0074 NEW)
endif()

set(ARROW_VERSION "7.0.0-SNAPSHOT")
set(ARROW_VERSION "8.0.0-SNAPSHOT")

string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" ARROW_BASE_VERSION "${ARROW_VERSION}")

Expand Down
2 changes: 1 addition & 1 deletion cpp/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arrow",
"version-string": "7.0.0-SNAPSHOT",
"version-string": "8.0.0-SNAPSHOT",
"dependencies": [
"abseil",
{
Expand Down
2 changes: 1 addition & 1 deletion csharp/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<Product>Apache Arrow library</Product>
<Copyright>Copyright 2016-2019 The Apache Software Foundation</Copyright>
<Company>The Apache Software Foundation</Company>
<Version>7.0.0-SNAPSHOT</Version>
<Version>8.0.0-SNAPSHOT</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion dev/tasks/homebrew-formulae/apache-arrow-glib.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
class ApacheArrowGlib < Formula
desc "GLib bindings for Apache Arrow"
homepage "https://arrow.apache.org/"
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-7.0.0-SNAPSHOT/apache-arrow-7.0.0-SNAPSHOT.tar.gz"
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-8.0.0-SNAPSHOT/apache-arrow-8.0.0-SNAPSHOT.tar.gz"
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
license "Apache-2.0"
head "https://github.com/apache/arrow.git"
Expand Down
2 changes: 1 addition & 1 deletion dev/tasks/homebrew-formulae/apache-arrow.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
class ApacheArrow < Formula
desc "Columnar in-memory analytics layer designed to accelerate big data"
homepage "https://arrow.apache.org/"
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-7.0.0-SNAPSHOT/apache-arrow-7.0.0-SNAPSHOT.tar.gz"
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-8.0.0-SNAPSHOT/apache-arrow-8.0.0-SNAPSHOT.tar.gz"
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
license "Apache-2.0"
head "https://github.com/apache/arrow.git"
Expand Down
2 changes: 1 addition & 1 deletion dev/tasks/homebrew-formulae/autobrew/apache-arrow.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class ApacheArrow < Formula
desc "Columnar in-memory analytics layer designed to accelerate big data"
homepage "https://arrow.apache.org/"
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-6.0.1.9000/apache-arrow-6.0.1.9000.tar.gz"
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-7.0.0.9000/apache-arrow-7.0.0.9000.tar.gz"
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
head "https://github.com/apache/arrow.git"

Expand Down
6 changes: 3 additions & 3 deletions go/arrow/_examples/helloworld/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
package main

import (
"github.com/apache/arrow/go/v7/arrow/array"
"github.com/apache/arrow/go/v7/arrow/math"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow/array"
"github.com/apache/arrow/go/v8/arrow/math"
"github.com/apache/arrow/go/v8/arrow/memory"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go/arrow/array.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package arrow
import (
"encoding/json"

"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow/memory"
)

// ArrayData is the underlying memory and metadata of an Arrow array, corresponding
Expand Down
6 changes: 3 additions & 3 deletions go/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/v7/arrow"
"github.com/apache/arrow/go/v7/arrow/bitutil"
"github.com/apache/arrow/go/v7/arrow/internal/debug"
"github.com/apache/arrow/go/v8/arrow"
"github.com/apache/arrow/go/v8/arrow/bitutil"
"github.com/apache/arrow/go/v8/arrow/internal/debug"
)

// Interface aliases arrow.Array so that existing users don't get broken by
Expand Down
10 changes: 5 additions & 5 deletions go/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/v7/arrow"
"github.com/apache/arrow/go/v7/arrow/array"
"github.com/apache/arrow/go/v7/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v7/arrow/internal/testing/types"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow"
"github.com/apache/arrow/go/v8/arrow/array"
"github.com/apache/arrow/go/v8/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v8/arrow/internal/testing/types"
"github.com/apache/arrow/go/v8/arrow/memory"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion go/arrow/array/binary.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"strings"
"unsafe"

"github.com/apache/arrow/go/v7/arrow"
"github.com/apache/arrow/go/v8/arrow"
"github.com/goccy/go-json"
)

Expand Down
4 changes: 2 additions & 2 deletions go/arrow/array/binary_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (

"github.com/stretchr/testify/assert"

"github.com/apache/arrow/go/v7/arrow"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow"
"github.com/apache/arrow/go/v8/arrow/memory"
)

func TestBinary(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions go/arrow/array/binarybuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ import (
"reflect"
"sync/atomic"

"github.com/apache/arrow/go/v7/arrow"
"github.com/apache/arrow/go/v7/arrow/internal/debug"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow"
"github.com/apache/arrow/go/v8/arrow/internal/debug"
"github.com/apache/arrow/go/v8/arrow/memory"
"github.com/goccy/go-json"
)

Expand Down
6 changes: 3 additions & 3 deletions go/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/v7/arrow"
"github.com/apache/arrow/go/v7/arrow/array"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow"
"github.com/apache/arrow/go/v8/arrow/array"
"github.com/apache/arrow/go/v8/arrow/memory"
"github.com/stretchr/testify/assert"
)

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

"github.com/apache/arrow/go/v7/arrow"
"github.com/apache/arrow/go/v7/arrow/bitutil"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow"
"github.com/apache/arrow/go/v8/arrow/bitutil"
"github.com/apache/arrow/go/v8/arrow/memory"
"github.com/goccy/go-json"
)

Expand Down
4 changes: 2 additions & 2 deletions go/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/v7/arrow/array"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow/array"
"github.com/apache/arrow/go/v8/arrow/memory"
)

func TestBooleanSliceData(t *testing.T) {
Expand Down
8 changes: 4 additions & 4 deletions go/arrow/array/booleanbuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ import (
"strconv"
"sync/atomic"

"github.com/apache/arrow/go/v7/arrow"
"github.com/apache/arrow/go/v7/arrow/bitutil"
"github.com/apache/arrow/go/v7/arrow/internal/debug"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow"
"github.com/apache/arrow/go/v8/arrow/bitutil"
"github.com/apache/arrow/go/v8/arrow/internal/debug"
"github.com/apache/arrow/go/v8/arrow/memory"
"github.com/goccy/go-json"
)

Expand Down
6 changes: 3 additions & 3 deletions go/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/v7/arrow/array"
"github.com/apache/arrow/go/v7/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow/array"
"github.com/apache/arrow/go/v8/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v8/arrow/memory"
"github.com/stretchr/testify/assert"
)

Expand Down
6 changes: 3 additions & 3 deletions go/arrow/array/bufferbuilder.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/v7/arrow/bitutil"
"github.com/apache/arrow/go/v7/arrow/internal/debug"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow/bitutil"
"github.com/apache/arrow/go/v8/arrow/internal/debug"
"github.com/apache/arrow/go/v8/arrow/memory"
)

// A bufferBuilder provides common functionality for populating memory with a sequence of type-specific values.
Expand Down
2 changes: 1 addition & 1 deletion go/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/v7/arrow/memory"
import "github.com/apache/arrow/go/v8/arrow/memory"

type byteBufferBuilder struct {
bufferBuilder
Expand Down
6 changes: 3 additions & 3 deletions go/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 go/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/v7/arrow"
"github.com/apache/arrow/go/v7/arrow/bitutil"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow"
"github.com/apache/arrow/go/v8/arrow/bitutil"
"github.com/apache/arrow/go/v8/arrow/memory"
)

{{range .In}}
Expand Down
4 changes: 2 additions & 2 deletions go/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/v7/arrow/memory"
"github.com/apache/arrow/go/v7/arrow/endian"
"github.com/apache/arrow/go/v8/arrow/memory"
"github.com/apache/arrow/go/v8/arrow/endian"
"github.com/stretchr/testify/assert"
)

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

"github.com/apache/arrow/go/v7/arrow"
"github.com/apache/arrow/go/v7/arrow/bitutil"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow"
"github.com/apache/arrow/go/v8/arrow/bitutil"
"github.com/apache/arrow/go/v8/arrow/memory"
"github.com/goccy/go-json"
)

Expand Down
4 changes: 2 additions & 2 deletions go/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/v7/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v8/arrow/memory"
"github.com/stretchr/testify/assert"
)

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

"github.com/apache/arrow/go/v7/arrow"
"github.com/apache/arrow/go/v7/arrow/float16"
"github.com/apache/arrow/go/v8/arrow"
"github.com/apache/arrow/go/v8/arrow/float16"
"golang.org/x/xerrors"
)

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

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

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

"github.com/apache/arrow/go/v7/arrow"
"github.com/apache/arrow/go/v7/arrow/bitutil"
"github.com/apache/arrow/go/v7/arrow/internal/debug"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow"
"github.com/apache/arrow/go/v8/arrow/bitutil"
"github.com/apache/arrow/go/v8/arrow/internal/debug"
"github.com/apache/arrow/go/v8/arrow/memory"
"golang.org/x/xerrors"
)

Expand Down
10 changes: 5 additions & 5 deletions go/arrow/array/concat_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/v7/arrow"
"github.com/apache/arrow/go/v7/arrow/array"
"github.com/apache/arrow/go/v7/arrow/bitutil"
"github.com/apache/arrow/go/v7/arrow/internal/testing/gen"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow"
"github.com/apache/arrow/go/v8/arrow/array"
"github.com/apache/arrow/go/v8/arrow/bitutil"
"github.com/apache/arrow/go/v8/arrow/internal/testing/gen"
"github.com/apache/arrow/go/v8/arrow/memory"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/suite"
"golang.org/x/exp/rand"
Expand Down
6 changes: 3 additions & 3 deletions go/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/v7/arrow"
"github.com/apache/arrow/go/v7/arrow/internal/debug"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow"
"github.com/apache/arrow/go/v8/arrow/internal/debug"
"github.com/apache/arrow/go/v8/arrow/memory"
)

// Data represents the memory and metadata of an Arrow array.
Expand Down
4 changes: 2 additions & 2 deletions go/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/v7/arrow"
"github.com/apache/arrow/go/v7/arrow/memory"
"github.com/apache/arrow/go/v8/arrow"
"github.com/apache/arrow/go/v8/arrow/memory"
"github.com/stretchr/testify/assert"
)

Expand Down
Loading

0 comments on commit f0bbed9

Please sign in to comment.