Skip to content

Commit

Permalink
MINOR: [Release] Update versions for 13.0.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
raulcd committed May 2, 2023
1 parent 42527e1 commit f8ea9d5
Show file tree
Hide file tree
Showing 483 changed files with 1,618 additions and 1,608 deletions.
2 changes: 1 addition & 1 deletion c_glib/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ project('arrow-glib', 'c', 'cpp',
'cpp_std=c++17',
])

version = '12.0.0-SNAPSHOT'
version = '13.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=11.0.0.9000
pkgver=12.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 "12.0.0-SNAPSHOT")
set(ARROW_VERSION "13.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": "12.0.0-SNAPSHOT",
"version-string": "13.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>12.0.0-SNAPSHOT</Version>
<Version>13.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-12.0.0-SNAPSHOT/apache-arrow-12.0.0-SNAPSHOT.tar.gz"
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-13.0.0-SNAPSHOT/apache-arrow-13.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-12.0.0-SNAPSHOT/apache-arrow-12.0.0-SNAPSHOT.tar.gz"
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-13.0.0-SNAPSHOT/apache-arrow-13.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-11.0.0.9000/apache-arrow-11.0.0.9000.tar.gz"
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-12.0.0.9000/apache-arrow-12.0.0.9000.tar.gz"
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
head "https://github.com/apache/arrow.git"

Expand Down
8 changes: 6 additions & 2 deletions docs/source/_static/versions.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
[
{
"name": "12.0 (dev)",
"name": "13.0 (dev)",
"version": "dev/"
},
{
"name": "11.0 (stable)",
"name": "12.0 (stable)",
"version": ""
},
{
"name": "11.0",
"version": "11.0/"
},
{
"name": "10.0",
"version": "10.0/"
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/v12/arrow/array"
"github.com/apache/arrow/go/v12/arrow/math"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/arrow/array"
"github.com/apache/arrow/go/v13/arrow/math"
"github.com/apache/arrow/go/v13/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 @@ -20,7 +20,7 @@ import (
"encoding/json"
"fmt"

"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/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/v12/arrow"
"github.com/apache/arrow/go/v12/arrow/bitutil"
"github.com/apache/arrow/go/v12/arrow/internal/debug"
"github.com/apache/arrow/go/v13/arrow"
"github.com/apache/arrow/go/v13/arrow/bitutil"
"github.com/apache/arrow/go/v13/arrow/internal/debug"
)

const (
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/v12/arrow"
"github.com/apache/arrow/go/v12/arrow/array"
"github.com/apache/arrow/go/v12/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v12/internal/types"
"github.com/apache/arrow/go/v13/arrow"
"github.com/apache/arrow/go/v13/arrow/array"
"github.com/apache/arrow/go/v13/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v13/arrow/memory"
"github.com/apache/arrow/go/v13/internal/types"
"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 @@ -23,7 +23,7 @@ import (
"strings"
"unsafe"

"github.com/apache/arrow/go/v12/arrow"
"github.com/apache/arrow/go/v13/arrow"
"github.com/goccy/go-json"
)

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

"github.com/stretchr/testify/assert"

"github.com/apache/arrow/go/v12/arrow"
"github.com/apache/arrow/go/v12/arrow/bitutil"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/arrow"
"github.com/apache/arrow/go/v13/arrow/bitutil"
"github.com/apache/arrow/go/v13/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/v12/arrow"
"github.com/apache/arrow/go/v12/arrow/internal/debug"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/arrow"
"github.com/apache/arrow/go/v13/arrow/internal/debug"
"github.com/apache/arrow/go/v13/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/v12/arrow"
"github.com/apache/arrow/go/v12/arrow/array"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/arrow"
"github.com/apache/arrow/go/v13/arrow/array"
"github.com/apache/arrow/go/v13/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 @@ -21,9 +21,9 @@ import (
"strconv"
"strings"

"github.com/apache/arrow/go/v12/arrow"
"github.com/apache/arrow/go/v12/arrow/bitutil"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/arrow"
"github.com/apache/arrow/go/v13/arrow/bitutil"
"github.com/apache/arrow/go/v13/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/v12/arrow/array"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/arrow/array"
"github.com/apache/arrow/go/v13/arrow/memory"
"github.com/stretchr/testify/assert"
)

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/v12/arrow"
"github.com/apache/arrow/go/v12/arrow/bitutil"
"github.com/apache/arrow/go/v12/arrow/internal/debug"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/arrow"
"github.com/apache/arrow/go/v13/arrow/bitutil"
"github.com/apache/arrow/go/v13/arrow/internal/debug"
"github.com/apache/arrow/go/v13/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/v12/arrow/array"
"github.com/apache/arrow/go/v12/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/arrow/array"
"github.com/apache/arrow/go/v13/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v13/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/v12/arrow/bitutil"
"github.com/apache/arrow/go/v12/arrow/internal/debug"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/arrow/bitutil"
"github.com/apache/arrow/go/v13/arrow/internal/debug"
"github.com/apache/arrow/go/v13/arrow/memory"
)

type bufBuilder interface {
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/v12/arrow/memory"
import "github.com/apache/arrow/go/v13/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/v12/arrow"
"github.com/apache/arrow/go/v12/arrow/bitutil"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/arrow"
"github.com/apache/arrow/go/v13/arrow/bitutil"
"github.com/apache/arrow/go/v13/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/v12/arrow/memory"
"github.com/apache/arrow/go/v12/arrow/endian"
"github.com/apache/arrow/go/v13/arrow/memory"
"github.com/apache/arrow/go/v13/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/v12/arrow"
"github.com/apache/arrow/go/v12/arrow/bitutil"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/arrow"
"github.com/apache/arrow/go/v13/arrow/bitutil"
"github.com/apache/arrow/go/v13/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/v12/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v13/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 @@ -20,8 +20,8 @@ import (
"fmt"
"math"

"github.com/apache/arrow/go/v12/arrow"
"github.com/apache/arrow/go/v12/arrow/float16"
"github.com/apache/arrow/go/v13/arrow"
"github.com/apache/arrow/go/v13/arrow/float16"
)

// RecordEqual reports whether the two provided records are equal.
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/v12/arrow"
"github.com/apache/arrow/go/v12/arrow/array"
"github.com/apache/arrow/go/v12/arrow/float16"
"github.com/apache/arrow/go/v12/arrow/internal/arrdata"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/arrow"
"github.com/apache/arrow/go/v13/arrow/array"
"github.com/apache/arrow/go/v13/arrow/float16"
"github.com/apache/arrow/go/v13/arrow/internal/arrdata"
"github.com/apache/arrow/go/v13/arrow/memory"
"github.com/stretchr/testify/assert"
)

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

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

// Concatenate creates a new arrow.Array which is the concatenation of the
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 @@ -23,11 +23,11 @@ import (
"strings"
"testing"

"github.com/apache/arrow/go/v12/arrow"
"github.com/apache/arrow/go/v12/arrow/array"
"github.com/apache/arrow/go/v12/arrow/bitutil"
"github.com/apache/arrow/go/v12/arrow/internal/testing/gen"
"github.com/apache/arrow/go/v12/arrow/memory"
"github.com/apache/arrow/go/v13/arrow"
"github.com/apache/arrow/go/v13/arrow/array"
"github.com/apache/arrow/go/v13/arrow/bitutil"
"github.com/apache/arrow/go/v13/arrow/internal/testing/gen"
"github.com/apache/arrow/go/v13/arrow/memory"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
Expand Down

0 comments on commit f8ea9d5

Please sign in to comment.