Skip to content

Commit

Permalink
Revert "MINOR: [Release] Update versions for 14.0.1-SNAPSHOT"
Browse files Browse the repository at this point in the history
This reverts commit e5b2bba.
  • Loading branch information
raulcd committed Nov 10, 2023
1 parent 0b796f8 commit 3c99fbb
Show file tree
Hide file tree
Showing 503 changed files with 1,730 additions and 1,732 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 = '14.0.1-SNAPSHOT'
version = '15.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 cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ if(POLICY CMP0135)
cmake_policy(SET CMP0135 NEW)
endif()

set(ARROW_VERSION "14.0.1-SNAPSHOT")
set(ARROW_VERSION "15.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": "14.0.1-SNAPSHOT",
"version-string": "15.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>14.0.1-SNAPSHOT</Version>
<Version>15.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-14.0.1-SNAPSHOT/apache-arrow-14.0.1-SNAPSHOT.tar.gz"
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-15.0.0-SNAPSHOT/apache-arrow-15.0.0-SNAPSHOT.tar.gz"
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
license "Apache-2.0"
head "https://github.com/apache/arrow.git", branch: "main"
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-14.0.1-SNAPSHOT/apache-arrow-14.0.1-SNAPSHOT.tar.gz"
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-15.0.0-SNAPSHOT/apache-arrow-15.0.0-SNAPSHOT.tar.gz"
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
license "Apache-2.0"
head "https://github.com/apache/arrow.git", branch: "main"
Expand Down
2 changes: 1 addition & 1 deletion go/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/v14.svg)](https://pkg.go.dev/github.com/apache/arrow/go/v14)
[![Go Reference](https://pkg.go.dev/badge/github.com/apache/arrow/go/v15.svg)](https://pkg.go.dev/github.com/apache/arrow/go/v15)

[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 go/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/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/array"
"github.com/apache/arrow/go/v14/arrow/math"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/array"
"github.com/apache/arrow/go/v15/arrow/math"
"github.com/apache/arrow/go/v15/arrow/memory"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go/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/v14/internal/json"
"github.com/apache/arrow/go/v15/internal/json"
)

const Ext = ".tmpl"
Expand Down
4 changes: 2 additions & 2 deletions go/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/v14/arrow/memory"
"github.com/apache/arrow/go/v14/internal/json"
"github.com/apache/arrow/go/v15/arrow/memory"
"github.com/apache/arrow/go/v15/internal/json"
)

// 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/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/bitutil"
"github.com/apache/arrow/go/v14/arrow/internal/debug"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/bitutil"
"github.com/apache/arrow/go/v15/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/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/array"
"github.com/apache/arrow/go/v14/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v14/internal/types"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/array"
"github.com/apache/arrow/go/v15/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v15/arrow/memory"
"github.com/apache/arrow/go/v15/internal/types"
"github.com/stretchr/testify/assert"
)

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

"github.com/apache/arrow/go/v14/arrow"
"github.com/apache/arrow/go/v14/internal/json"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/internal/json"
)

type BinaryLike interface {
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 @@ -20,9 +20,9 @@ import (
"reflect"
"testing"

"github.com/apache/arrow/go/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/bitutil"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/bitutil"
"github.com/apache/arrow/go/v15/arrow/memory"
"github.com/stretchr/testify/assert"
)

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

"github.com/apache/arrow/go/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/internal/debug"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v14/internal/json"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/internal/debug"
"github.com/apache/arrow/go/v15/arrow/memory"
"github.com/apache/arrow/go/v15/internal/json"
)

// A BinaryBuilder is used to build a Binary array using the Append methods.
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/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/array"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/array"
"github.com/apache/arrow/go/v15/arrow/memory"
"github.com/stretchr/testify/assert"
)

Expand Down
8 changes: 4 additions & 4 deletions go/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/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/bitutil"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v14/internal/json"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/bitutil"
"github.com/apache/arrow/go/v15/arrow/memory"
"github.com/apache/arrow/go/v15/internal/json"
)

// A type which represents an immutable sequence of boolean values.
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/v14/arrow/array"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v15/arrow/array"
"github.com/apache/arrow/go/v15/arrow/memory"
"github.com/stretchr/testify/assert"
)

Expand Down
10 changes: 5 additions & 5 deletions go/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/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/bitutil"
"github.com/apache/arrow/go/v14/arrow/internal/debug"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v14/internal/json"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/bitutil"
"github.com/apache/arrow/go/v15/arrow/internal/debug"
"github.com/apache/arrow/go/v15/arrow/memory"
"github.com/apache/arrow/go/v15/internal/json"
)

type BooleanBuilder struct {
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/v14/arrow/array"
"github.com/apache/arrow/go/v14/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v15/arrow/array"
"github.com/apache/arrow/go/v15/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v15/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/v14/arrow/bitutil"
"github.com/apache/arrow/go/v14/arrow/internal/debug"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v15/arrow/bitutil"
"github.com/apache/arrow/go/v15/arrow/internal/debug"
"github.com/apache/arrow/go/v15/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/v14/arrow/memory"
import "github.com/apache/arrow/go/v15/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/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/bitutil"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/bitutil"
"github.com/apache/arrow/go/v15/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/v14/arrow/memory"
"github.com/apache/arrow/go/v14/arrow/endian"
"github.com/apache/arrow/go/v15/arrow/memory"
"github.com/apache/arrow/go/v15/arrow/endian"
"github.com/stretchr/testify/assert"
)

Expand Down
8 changes: 4 additions & 4 deletions go/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/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/bitutil"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v14/internal/json"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/bitutil"
"github.com/apache/arrow/go/v15/arrow/memory"
"github.com/apache/arrow/go/v15/internal/json"
)

const (
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/v14/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v15/arrow/internal/testing/tools"
"github.com/apache/arrow/go/v15/arrow/memory"
"github.com/stretchr/testify/assert"
)

Expand Down
6 changes: 3 additions & 3 deletions go/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/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/float16"
"github.com/apache/arrow/go/v14/internal/bitutils"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/float16"
"github.com/apache/arrow/go/v15/internal/bitutils"
)

// 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 @@ -22,11 +22,11 @@ import (
"sort"
"testing"

"github.com/apache/arrow/go/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/array"
"github.com/apache/arrow/go/v14/arrow/float16"
"github.com/apache/arrow/go/v14/arrow/internal/arrdata"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/array"
"github.com/apache/arrow/go/v15/arrow/float16"
"github.com/apache/arrow/go/v15/arrow/internal/arrdata"
"github.com/apache/arrow/go/v15/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 @@ -23,13 +23,13 @@ import (
"math/bits"
"unsafe"

"github.com/apache/arrow/go/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/bitutil"
"github.com/apache/arrow/go/v14/arrow/encoded"
"github.com/apache/arrow/go/v14/arrow/internal/debug"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v14/internal/bitutils"
"github.com/apache/arrow/go/v14/internal/utils"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/bitutil"
"github.com/apache/arrow/go/v15/arrow/encoded"
"github.com/apache/arrow/go/v15/arrow/internal/debug"
"github.com/apache/arrow/go/v15/arrow/memory"
"github.com/apache/arrow/go/v15/internal/bitutils"
"github.com/apache/arrow/go/v15/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/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/array"
"github.com/apache/arrow/go/v14/arrow/bitutil"
"github.com/apache/arrow/go/v14/arrow/internal/testing/gen"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/array"
"github.com/apache/arrow/go/v15/arrow/bitutil"
"github.com/apache/arrow/go/v15/arrow/internal/testing/gen"
"github.com/apache/arrow/go/v15/arrow/memory"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
Expand Down
Loading

0 comments on commit 3c99fbb

Please sign in to comment.