You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2021/11/10 02:14:35 UTC

[arrow] annotated tag apache-arrow-6.0.1 updated (4fac692 -> 678922e)

This is an automated email from the ASF dual-hosted git repository.

kou pushed a change to annotated tag apache-arrow-6.0.1
in repository https://gitbox.apache.org/repos/asf/arrow.git.


*** WARNING: tag apache-arrow-6.0.1 was modified! ***

    from 4fac692  (tag)
      to 678922e  (tag)
 tagging 347a88ff9d20e2a4061eec0b455b8ea1aa8335dc (commit)
 replaces apache-arrow-6.0.0
      by Sutou Kouhei
      on Wed Nov 10 11:04:48 2021 +0900

- Log -----------------------------------------------------------------
[Release] Apache Arrow Release 6.0.1
-----------------------------------------------------------------------

    omit 2233a10  [Release] Update versions for 6.0.1
    omit 72b74ba  [Release] Update .deb/.rpm changelogs for 6.0.1
    omit b275eda  [Release] Update CHANGELOG.md for 6.0.1
     add df92a26  MINOR: [Release] Fix debian:bookwarm typo in the release verification script (#11512)
     add a2a1479  ARROW-14433: [Release][APT] Skip arm64 Ubuntu 21.04 verification
     add daca509  ARROW-14390: [Packaging][Ubuntu] Add support for Ubuntu 21.10
     add 0319778  ARROW-13156 [R] bindings for str_count
     add 88683e8  ARROW-14310: [R] Make expect_dplyr_equal() more intuitive
     add 527f576  ARROW-14181: [C++][Compute] Support for dictionaries in hash join
     add 76dfc38  ARROW-14519: [C++] Properly error if joining on unsupported type
     add 6e6acd5  ARROW-14628: [Release][Python] Use python -m pytest
     add 8410e34  ARROW-14583: [C++] Handle empty chunked arrays in Take, empty datasets in GroupByNode
     add 031c894  ARROW-14630: [C++] Fix aggregation over scalar key columns
     add 0b1c6d0  ARROW-14623: [Packaging][Java] Upload not only .jar but also .pom
     add aa9a7a6  ARROW-14620: [Python] Missing bindings for existing_data_behavior makes it impossible to maintain old behavior
     new 83a8c93  [Release] Update CHANGELOG.md for 6.0.1
     new 9a52dd4  [Release] Update .deb/.rpm changelogs for 6.0.1
     new 347a88f  [Release] Update versions for 6.0.1

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
annotated tag are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (4fac692)
            \
             N -- N -- N   refs/tags/apache-arrow-6.0.1 (678922e)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGELOG.md                                       |  14 +-
 ci/scripts/java_full_build.sh                      |  12 +-
 ci/scripts/python_wheel_unix_test.sh               |   2 +-
 cpp/cmake_modules/ThirdpartyToolchain.cmake        |   8 +
 cpp/src/arrow/CMakeLists.txt                       |   1 +
 cpp/src/arrow/compute/exec/aggregate_node.cc       |   9 +-
 cpp/src/arrow/compute/exec/hash_join.cc            | 103 +++-
 cpp/src/arrow/compute/exec/hash_join.h             |   5 +-
 cpp/src/arrow/compute/exec/hash_join_dict.cc       | 665 +++++++++++++++++++++
 cpp/src/arrow/compute/exec/hash_join_dict.h        | 315 ++++++++++
 cpp/src/arrow/compute/exec/hash_join_node.cc       |  61 +-
 cpp/src/arrow/compute/exec/hash_join_node_test.cc  | 576 ++++++++++++++++++
 cpp/src/arrow/compute/exec/plan_test.cc            |  76 ++-
 cpp/src/arrow/compute/exec/schema_util.h           |  38 +-
 cpp/src/arrow/compute/exec/source_node.cc          |  14 +-
 cpp/src/arrow/compute/exec/test_util.h             |   2 -
 .../arrow/compute/kernels/hash_aggregate_test.cc   |  33 +-
 cpp/src/arrow/compute/kernels/row_encoder.cc       |   4 +-
 cpp/src/arrow/compute/kernels/row_encoder.h        |   6 +-
 cpp/src/arrow/compute/kernels/vector_selection.cc  |   9 +-
 .../arrow/compute/kernels/vector_selection_test.cc |   7 +
 dev/release/binary-task.rb                         |   2 +-
 dev/release/verify-release-candidate.sh            |  19 +-
 dev/tasks/java-jars/github.yml                     |  31 +-
 dev/tasks/linux-packages/Rakefile                  |   4 +
 .../apt/{ubuntu-focal => ubuntu-impish}/Dockerfile |   2 +-
 .../apache-arrow-apt-source/debian/changelog       |   2 +-
 .../yum/apache-arrow-release.spec.in               |   2 +-
 .../from                                           |   2 +-
 .../{ubuntu-hirsute => ubuntu-impish}/Dockerfile   |   2 +-
 .../linux-packages/apache-arrow/debian/changelog   |   2 +-
 .../linux-packages/apache-arrow/yum/arrow.spec.in  |   2 +-
 dev/tasks/linux-packages/github.linux.amd64.yml    |   4 +
 dev/tasks/linux-packages/package-task.rb           |  10 +-
 dev/tasks/tasks.yml                                |  27 +-
 docker-compose.yml                                 |   4 +-
 python/pyarrow/_dataset.pyx                        |  16 +-
 python/pyarrow/dataset.py                          |  21 +-
 python/pyarrow/includes/libarrow_dataset.pxd       |   9 +
 python/pyarrow/tests/test_dataset.py               |  49 ++
 r/R/dplyr-functions.R                              |  13 +
 r/tests/testthat/helper-expectation.R              | 120 ++--
 r/tests/testthat/test-Array.R                      |   8 +-
 r/tests/testthat/test-compute-aggregate.R          |  62 +-
 r/tests/testthat/test-compute-sort.R               |  60 +-
 r/tests/testthat/test-dplyr-arrange.R              |  80 +--
 r/tests/testthat/test-dplyr-collapse.R             |  12 +-
 r/tests/testthat/test-dplyr-count.R                |  32 +-
 r/tests/testthat/test-dplyr-distinct.R             |  32 +-
 r/tests/testthat/test-dplyr-filter.R               | 138 ++---
 r/tests/testthat/test-dplyr-funcs-conditional.R    | 100 ++--
 r/tests/testthat/test-dplyr-funcs-datetime.R       | 116 ++--
 r/tests/testthat/test-dplyr-funcs-math.R           |  98 +--
 r/tests/testthat/test-dplyr-funcs-string.R         | 487 ++++++++-------
 r/tests/testthat/test-dplyr-funcs-type.R           |  84 +--
 r/tests/testthat/test-dplyr-group-by.R             |  54 +-
 r/tests/testthat/test-dplyr-join.R                 |  48 +-
 r/tests/testthat/test-dplyr-mutate.R               | 116 ++--
 r/tests/testthat/test-dplyr-query.R                |  29 +-
 r/tests/testthat/test-dplyr-select.R               |  72 +--
 r/tests/testthat/test-dplyr-summarize.R            | 280 ++++-----
 r/tests/testthat/test-metadata.R                   |  24 +-
 r/tests/testthat/test-na-omit.R                    |  12 +-
 63 files changed, 3115 insertions(+), 1132 deletions(-)
 create mode 100644 cpp/src/arrow/compute/exec/hash_join_dict.cc
 create mode 100644 cpp/src/arrow/compute/exec/hash_join_dict.h
 copy dev/tasks/linux-packages/apache-arrow-apt-source/apt/{ubuntu-focal => ubuntu-impish}/Dockerfile (98%)
 copy dev/tasks/linux-packages/apache-arrow/apt/{debian-buster-arm64 => ubuntu-impish-arm64}/from (97%)
 copy dev/tasks/linux-packages/apache-arrow/apt/{ubuntu-hirsute => ubuntu-impish}/Dockerfile (98%)

[arrow] 01/03: [Release] Update CHANGELOG.md for 6.0.1

Posted by ko...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to annotated tag apache-arrow-6.0.1
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit 83a8c93ada5a74c8de0a93601efed772cb7a17be
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Wed Nov 10 11:04:45 2021 +0900

    [Release] Update CHANGELOG.md for 6.0.1
---
 CHANGELOG.md | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index f44dd79..9f4af5d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,44 @@
 
+# Apache Arrow 6.0.1 (2021-11-10)
+
+## Bug Fixes
+
+* [ARROW-14437](https://issues.apache.org/jira/browse/ARROW-14437) - [Python] CSV test\_cancellation unittests fail on Apple M1
+* [ARROW-14492](https://issues.apache.org/jira/browse/ARROW-14492) - [JS] Browser bundles broken
+* [ARROW-14513](https://issues.apache.org/jira/browse/ARROW-14513) - [Release][Go] Update release-6.0.0 with /v6 suffix
+* [ARROW-14519](https://issues.apache.org/jira/browse/ARROW-14519) - [C++] joins segfault when data contains list column
+* [ARROW-14523](https://issues.apache.org/jira/browse/ARROW-14523) - [C++][Python] S3FileSystem write\_table can lose data
+* [ARROW-14538](https://issues.apache.org/jira/browse/ARROW-14538) - [R] Work around empty tr call on Solaris
+* [ARROW-14550](https://issues.apache.org/jira/browse/ARROW-14550) - [C++][Go] the json license is not compatible with FSF standards
+* [ARROW-14583](https://issues.apache.org/jira/browse/ARROW-14583) - [R][C++] Crash when summarizing after filtering to no rows on partitioned data
+* [ARROW-14584](https://issues.apache.org/jira/browse/ARROW-14584) - [Python][CI] Python sdist installation fails with latest setuptools 58.5
+* [ARROW-14620](https://issues.apache.org/jira/browse/ARROW-14620) - [Python] Missing bindings for existing\_data\_behavior makes it impossible to maintain old behavior
+* [ARROW-14630](https://issues.apache.org/jira/browse/ARROW-14630) - [C++] DCHECK in GroupByNode when error encountered
+
+
+## New Features and Improvements
+
+* [ARROW-13156](https://issues.apache.org/jira/browse/ARROW-13156) - [R] bindings for str\_count
+* [ARROW-14181](https://issues.apache.org/jira/browse/ARROW-14181) - [C++][Compute] Hash Join support for dictionary	
+* [ARROW-14189](https://issues.apache.org/jira/browse/ARROW-14189) - [Docs] Add version dropdown to the sphinx docs
+* [ARROW-14310](https://issues.apache.org/jira/browse/ARROW-14310) - [R] Make expect\_dplyr\_equal() more intuitive
+* [ARROW-14365](https://issues.apache.org/jira/browse/ARROW-14365) - [R] Update README example to reflect new capabilities
+* [ARROW-14390](https://issues.apache.org/jira/browse/ARROW-14390) - [Packaging][Ubuntu] Add support for Ubuntu 21.10
+* [ARROW-14433](https://issues.apache.org/jira/browse/ARROW-14433) - [Release][APT] Skip arm64 Ubuntu 21.04 verification
+* [ARROW-14450](https://issues.apache.org/jira/browse/ARROW-14450) - [R] Old macos build error
+* [ARROW-14459](https://issues.apache.org/jira/browse/ARROW-14459) - [Doc] Update the pinned sphinx version
+* [ARROW-14480](https://issues.apache.org/jira/browse/ARROW-14480) - [R] Expose arrow::dataset::ExistingDataBehavior to R
+* [ARROW-14486](https://issues.apache.org/jira/browse/ARROW-14486) - [Packaging][deb] libthrift-dev dependency is missing
+* [ARROW-14490](https://issues.apache.org/jira/browse/ARROW-14490) - [Doc] Regenerate CHANGELOG.md to include all versions
+* [ARROW-14496](https://issues.apache.org/jira/browse/ARROW-14496) - [Docs] Ensure links to non-sphinx parts of the docs are relative instead of absolute
+* [ARROW-14499](https://issues.apache.org/jira/browse/ARROW-14499) - [Docs] Version dropdown side-by-side with search box
+* [ARROW-14514](https://issues.apache.org/jira/browse/ARROW-14514) - [C++][R] UBSAN error on round kernel
+* [ARROW-14580](https://issues.apache.org/jira/browse/ARROW-14580) - [Python] PyPI listing does not include trove classifiers for Python 3.10
+* [ARROW-14623](https://issues.apache.org/jira/browse/ARROW-14623) - [Packaging][Java] Upload not only .jar but also .pom
+* [ARROW-14628](https://issues.apache.org/jira/browse/ARROW-14628) - [Release][Python] Use python -m pytest
+
+
+
 # Apache Arrow 6.0.0 (2021-10-26)
 
 ## Bug Fixes

[arrow] 03/03: [Release] Update versions for 6.0.1

Posted by ko...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to annotated tag apache-arrow-6.0.1
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit 347a88ff9d20e2a4061eec0b455b8ea1aa8335dc
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Wed Nov 10 11:04:48 2021 +0900

    [Release] Update versions for 6.0.1
---
 c_glib/meson.build                                   | 2 +-
 ci/scripts/PKGBUILD                                  | 2 +-
 cpp/CMakeLists.txt                                   | 2 +-
 cpp/vcpkg.json                                       | 2 +-
 csharp/Directory.Build.props                         | 2 +-
 dev/tasks/homebrew-formulae/apache-arrow.rb          | 2 +-
 dev/tasks/homebrew-formulae/autobrew/apache-arrow.rb | 2 +-
 java/adapter/avro/pom.xml                            | 2 +-
 java/adapter/jdbc/pom.xml                            | 2 +-
 java/adapter/orc/pom.xml                             | 2 +-
 java/algorithm/pom.xml                               | 2 +-
 java/c/pom.xml                                       | 2 +-
 java/compression/pom.xml                             | 2 +-
 java/dataset/pom.xml                                 | 2 +-
 java/flight/flight-core/pom.xml                      | 2 +-
 java/flight/flight-grpc/pom.xml                      | 2 +-
 java/format/pom.xml                                  | 2 +-
 java/gandiva/pom.xml                                 | 2 +-
 java/memory/memory-core/pom.xml                      | 2 +-
 java/memory/memory-netty/pom.xml                     | 2 +-
 java/memory/memory-unsafe/pom.xml                    | 2 +-
 java/memory/pom.xml                                  | 2 +-
 java/performance/pom.xml                             | 4 ++--
 java/plasma/pom.xml                                  | 2 +-
 java/pom.xml                                         | 2 +-
 java/tools/pom.xml                                   | 2 +-
 java/vector/pom.xml                                  | 2 +-
 js/package.json                                      | 2 +-
 matlab/CMakeLists.txt                                | 2 +-
 python/setup.py                                      | 2 +-
 r/DESCRIPTION                                        | 2 +-
 r/NEWS.md                                            | 2 +-
 ruby/red-arrow-cuda/lib/arrow-cuda/version.rb        | 2 +-
 ruby/red-arrow-dataset/lib/arrow-dataset/version.rb  | 2 +-
 ruby/red-arrow-flight/lib/arrow-flight/version.rb    | 2 +-
 ruby/red-arrow/lib/arrow/version.rb                  | 2 +-
 ruby/red-gandiva/lib/gandiva/version.rb              | 2 +-
 ruby/red-parquet/lib/parquet/version.rb              | 2 +-
 ruby/red-plasma/lib/plasma/version.rb                | 2 +-
 39 files changed, 40 insertions(+), 40 deletions(-)

diff --git a/c_glib/meson.build b/c_glib/meson.build
index fb92181..df04cf0 100644
--- a/c_glib/meson.build
+++ b/c_glib/meson.build
@@ -23,7 +23,7 @@ project('arrow-glib', 'c', 'cpp',
           'cpp_std=c++11',
         ])
 
-version = '6.0.0'
+version = '6.0.1'
 if version.endswith('-SNAPSHOT')
   version_numbers = version.split('-')[0].split('.')
   version_tag = version.split('-')[1]
diff --git a/ci/scripts/PKGBUILD b/ci/scripts/PKGBUILD
index ff84553..975d151 100644
--- a/ci/scripts/PKGBUILD
+++ b/ci/scripts/PKGBUILD
@@ -18,7 +18,7 @@
 _realname=arrow
 pkgbase=mingw-w64-${_realname}
 pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}"
-pkgver=6.0.0
+pkgver=6.0.1
 pkgrel=8000
 pkgdesc="Apache Arrow is a cross-language development platform for in-memory data (mingw-w64)"
 arch=("any")
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
index ba8c36e..65b9d96 100644
--- a/cpp/CMakeLists.txt
+++ b/cpp/CMakeLists.txt
@@ -47,7 +47,7 @@ if(POLICY CMP0074)
   cmake_policy(SET CMP0074 NEW)
 endif()
 
-set(ARROW_VERSION "6.0.0")
+set(ARROW_VERSION "6.0.1")
 
 string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" ARROW_BASE_VERSION "${ARROW_VERSION}")
 
diff --git a/cpp/vcpkg.json b/cpp/vcpkg.json
index 35907e1..be8612d 100644
--- a/cpp/vcpkg.json
+++ b/cpp/vcpkg.json
@@ -1,6 +1,6 @@
 {
   "name": "arrow",
-  "version-string": "6.0.0",
+  "version-string": "6.0.1",
   "dependencies": [
     "abseil",
     {
diff --git a/csharp/Directory.Build.props b/csharp/Directory.Build.props
index 893208c..affee18 100644
--- a/csharp/Directory.Build.props
+++ b/csharp/Directory.Build.props
@@ -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>6.0.0</Version>
+    <Version>6.0.1</Version>
   </PropertyGroup>
 
   <PropertyGroup>
diff --git a/dev/tasks/homebrew-formulae/apache-arrow.rb b/dev/tasks/homebrew-formulae/apache-arrow.rb
index 7023b5d..5f39666 100644
--- a/dev/tasks/homebrew-formulae/apache-arrow.rb
+++ b/dev/tasks/homebrew-formulae/apache-arrow.rb
@@ -1,7 +1,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.0/apache-arrow-6.0.0.tar.gz"
+  url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-6.0.1/apache-arrow-6.0.1.tar.gz"
   sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
   license "Apache-2.0"
   head "https://github.com/apache/arrow.git"
diff --git a/dev/tasks/homebrew-formulae/autobrew/apache-arrow.rb b/dev/tasks/homebrew-formulae/autobrew/apache-arrow.rb
index c38dc3f..2a77b01 100644
--- a/dev/tasks/homebrew-formulae/autobrew/apache-arrow.rb
+++ b/dev/tasks/homebrew-formulae/autobrew/apache-arrow.rb
@@ -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.0/apache-arrow-6.0.0.tar.gz"
+  url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-6.0.1/apache-arrow-6.0.1.tar.gz"
   sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
   head "https://github.com/apache/arrow.git"
 
diff --git a/java/adapter/avro/pom.xml b/java/adapter/avro/pom.xml
index a942960..1f3fea8 100644
--- a/java/adapter/avro/pom.xml
+++ b/java/adapter/avro/pom.xml
@@ -16,7 +16,7 @@
   <parent>
     <groupId>org.apache.arrow</groupId>
     <artifactId>arrow-java-root</artifactId>
-    <version>6.0.0</version>
+    <version>6.0.1</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/java/adapter/jdbc/pom.xml b/java/adapter/jdbc/pom.xml
index cc799f1..a0e09fc 100644
--- a/java/adapter/jdbc/pom.xml
+++ b/java/adapter/jdbc/pom.xml
@@ -16,7 +16,7 @@
     <parent>
         <groupId>org.apache.arrow</groupId>
         <artifactId>arrow-java-root</artifactId>
-        <version>6.0.0</version>
+        <version>6.0.1</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/java/adapter/orc/pom.xml b/java/adapter/orc/pom.xml
index cf2695e..26f5f0c 100644
--- a/java/adapter/orc/pom.xml
+++ b/java/adapter/orc/pom.xml
@@ -87,7 +87,7 @@
     <parent>
         <groupId>org.apache.arrow</groupId>
         <artifactId>arrow-java-root</artifactId>
-        <version>6.0.0</version>
+        <version>6.0.1</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/java/algorithm/pom.xml b/java/algorithm/pom.xml
index 8dcb5ed..fa4787d 100644
--- a/java/algorithm/pom.xml
+++ b/java/algorithm/pom.xml
@@ -14,7 +14,7 @@
   <parent>
     <groupId>org.apache.arrow</groupId>
     <artifactId>arrow-java-root</artifactId>
-    <version>6.0.0</version>
+    <version>6.0.1</version>
   </parent>
   <artifactId>arrow-algorithm</artifactId>
   <name>Arrow Algorithms</name>
diff --git a/java/c/pom.xml b/java/c/pom.xml
index b2933b5..901b084 100644
--- a/java/c/pom.xml
+++ b/java/c/pom.xml
@@ -13,7 +13,7 @@
     <parent>
         <artifactId>arrow-java-root</artifactId>
         <groupId>org.apache.arrow</groupId>
-        <version>6.0.0</version>
+        <version>6.0.1</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/java/compression/pom.xml b/java/compression/pom.xml
index e5787cd..c2e4603 100644
--- a/java/compression/pom.xml
+++ b/java/compression/pom.xml
@@ -14,7 +14,7 @@
   <parent>
     <groupId>org.apache.arrow</groupId>
     <artifactId>arrow-java-root</artifactId>
-    <version>6.0.0</version>
+    <version>6.0.1</version>
   </parent>
   <artifactId>arrow-compression</artifactId>
   <name>Arrow Compression</name>
diff --git a/java/dataset/pom.xml b/java/dataset/pom.xml
index 9e1871c..0a393c5 100644
--- a/java/dataset/pom.xml
+++ b/java/dataset/pom.xml
@@ -15,7 +15,7 @@
     <parent>
         <artifactId>arrow-java-root</artifactId>
         <groupId>org.apache.arrow</groupId>
-        <version>6.0.0</version>
+        <version>6.0.1</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/java/flight/flight-core/pom.xml b/java/flight/flight-core/pom.xml
index e01a59e..669c6b7 100644
--- a/java/flight/flight-core/pom.xml
+++ b/java/flight/flight-core/pom.xml
@@ -14,7 +14,7 @@
   <parent>
     <groupId>org.apache.arrow</groupId>
     <artifactId>arrow-java-root</artifactId>
-    <version>6.0.0</version>
+    <version>6.0.1</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/java/flight/flight-grpc/pom.xml b/java/flight/flight-grpc/pom.xml
index 539b4b5..1968484 100644
--- a/java/flight/flight-grpc/pom.xml
+++ b/java/flight/flight-grpc/pom.xml
@@ -13,7 +13,7 @@
   <parent>
     <artifactId>arrow-java-root</artifactId>
     <groupId>org.apache.arrow</groupId>
-    <version>6.0.0</version>
+    <version>6.0.1</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
diff --git a/java/format/pom.xml b/java/format/pom.xml
index fcb2709..067bed3 100644
--- a/java/format/pom.xml
+++ b/java/format/pom.xml
@@ -15,7 +15,7 @@
 <parent>
   <artifactId>arrow-java-root</artifactId>
   <groupId>org.apache.arrow</groupId>
-  <version>6.0.0</version>
+  <version>6.0.1</version>
 </parent>
 
 <artifactId>arrow-format</artifactId>
diff --git a/java/gandiva/pom.xml b/java/gandiva/pom.xml
index fbf5cd8..81caf12 100644
--- a/java/gandiva/pom.xml
+++ b/java/gandiva/pom.xml
@@ -14,7 +14,7 @@
     <parent>
       <groupId>org.apache.arrow</groupId>
       <artifactId>arrow-java-root</artifactId>
-      <version>6.0.0</version>
+      <version>6.0.1</version>
     </parent>
 
     <groupId>org.apache.arrow.gandiva</groupId>
diff --git a/java/memory/memory-core/pom.xml b/java/memory/memory-core/pom.xml
index 0e4db82..eb1226a 100644
--- a/java/memory/memory-core/pom.xml
+++ b/java/memory/memory-core/pom.xml
@@ -13,7 +13,7 @@
   <parent>
     <artifactId>arrow-memory</artifactId>
     <groupId>org.apache.arrow</groupId>
-    <version>6.0.0</version>
+    <version>6.0.1</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 
diff --git a/java/memory/memory-netty/pom.xml b/java/memory/memory-netty/pom.xml
index 88daf58..dee06a3 100644
--- a/java/memory/memory-netty/pom.xml
+++ b/java/memory/memory-netty/pom.xml
@@ -13,7 +13,7 @@
   <parent>
     <artifactId>arrow-memory</artifactId>
     <groupId>org.apache.arrow</groupId>
-    <version>6.0.0</version>
+    <version>6.0.1</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 
diff --git a/java/memory/memory-unsafe/pom.xml b/java/memory/memory-unsafe/pom.xml
index 9c4520d..6358784 100644
--- a/java/memory/memory-unsafe/pom.xml
+++ b/java/memory/memory-unsafe/pom.xml
@@ -13,7 +13,7 @@
   <parent>
     <artifactId>arrow-memory</artifactId>
     <groupId>org.apache.arrow</groupId>
-    <version>6.0.0</version>
+    <version>6.0.1</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 
diff --git a/java/memory/pom.xml b/java/memory/pom.xml
index c060bff..7f2e642 100644
--- a/java/memory/pom.xml
+++ b/java/memory/pom.xml
@@ -14,7 +14,7 @@
   <parent>
     <groupId>org.apache.arrow</groupId>
     <artifactId>arrow-java-root</artifactId>
-    <version>6.0.0</version>
+    <version>6.0.1</version>
   </parent>
   <artifactId>arrow-memory</artifactId>
   <name>Arrow Memory</name>
diff --git a/java/performance/pom.xml b/java/performance/pom.xml
index b6c8be7..c2be88c 100644
--- a/java/performance/pom.xml
+++ b/java/performance/pom.xml
@@ -14,7 +14,7 @@
     <parent>
         <artifactId>arrow-java-root</artifactId>
         <groupId>org.apache.arrow</groupId>
-        <version>6.0.0</version>
+        <version>6.0.1</version>
     </parent>
     <artifactId>arrow-performance</artifactId>
     <packaging>jar</packaging>
@@ -86,7 +86,7 @@
         <dependency>
             <groupId>org.apache.arrow</groupId>
             <artifactId>arrow-algorithm</artifactId>
-            <version>6.0.0</version>
+            <version>6.0.1</version>
             <scope>test</scope>
         </dependency>
     </dependencies>
diff --git a/java/plasma/pom.xml b/java/plasma/pom.xml
index c620852..725b414 100644
--- a/java/plasma/pom.xml
+++ b/java/plasma/pom.xml
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.apache.arrow</groupId>
         <artifactId>arrow-java-root</artifactId>
-        <version>6.0.0</version>
+        <version>6.0.1</version>
     </parent>
     <artifactId>arrow-plasma</artifactId>
     <name>Arrow Plasma Client</name>
diff --git a/java/pom.xml b/java/pom.xml
index b249282..d719e4c 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -20,7 +20,7 @@
 
   <groupId>org.apache.arrow</groupId>
   <artifactId>arrow-java-root</artifactId>
-  <version>6.0.0</version>
+  <version>6.0.1</version>
   <packaging>pom</packaging>
 
   <name>Apache Arrow Java Root POM</name>
diff --git a/java/tools/pom.xml b/java/tools/pom.xml
index da47c08..12a19ae 100644
--- a/java/tools/pom.xml
+++ b/java/tools/pom.xml
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.apache.arrow</groupId>
         <artifactId>arrow-java-root</artifactId>
-        <version>6.0.0</version>
+        <version>6.0.1</version>
     </parent>
     <artifactId>arrow-tools</artifactId>
     <name>Arrow Tools</name>
diff --git a/java/vector/pom.xml b/java/vector/pom.xml
index 5c92014..e37e931 100644
--- a/java/vector/pom.xml
+++ b/java/vector/pom.xml
@@ -14,7 +14,7 @@
   <parent>
     <groupId>org.apache.arrow</groupId>
     <artifactId>arrow-java-root</artifactId>
-    <version>6.0.0</version>
+    <version>6.0.1</version>
   </parent>
   <artifactId>arrow-vector</artifactId>
   <name>Arrow Vectors</name>
diff --git a/js/package.json b/js/package.json
index 6ba7ff1..2c4160f 100644
--- a/js/package.json
+++ b/js/package.json
@@ -101,5 +101,5 @@
   "engines": {
     "node": ">=12.0"
   },
-  "version": "6.0.0"
+  "version": "6.0.1"
 }
diff --git a/matlab/CMakeLists.txt b/matlab/CMakeLists.txt
index a360e40..cfc74a2 100644
--- a/matlab/CMakeLists.txt
+++ b/matlab/CMakeLists.txt
@@ -183,7 +183,7 @@ endmacro()
 
 set(CMAKE_CXX_STANDARD 11)
 
-set(MLARROW_VERSION "6.0.0")
+set(MLARROW_VERSION "6.0.1")
 string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" MLARROW_BASE_VERSION "${MLARROW_VERSION}")
 
 project(mlarrow VERSION "${MLARROW_BASE_VERSION}")
diff --git a/python/setup.py b/python/setup.py
index c36630e..f3c1a21 100755
--- a/python/setup.py
+++ b/python/setup.py
@@ -527,7 +527,7 @@ def _move_shared_libs_unix(build_prefix, build_lib, lib_name):
 
 # If the event of not running from a git clone (e.g. from a git archive
 # or a Python sdist), see if we can set the version number ourselves
-default_version = '6.0.0'
+default_version = '6.0.1'
 if (not os.path.exists('../.git') and
         not os.environ.get('SETUPTOOLS_SCM_PRETEND_VERSION')):
     os.environ['SETUPTOOLS_SCM_PRETEND_VERSION'] = \
diff --git a/r/DESCRIPTION b/r/DESCRIPTION
index d599343..f42c816 100644
--- a/r/DESCRIPTION
+++ b/r/DESCRIPTION
@@ -1,6 +1,6 @@
 Package: arrow
 Title: Integration to 'Apache' 'Arrow'
-Version: 6.0.0
+Version: 6.0.1
 Authors@R: c(
     person("Neal", "Richardson", email = "neal@ursalabs.org", role = c("aut", "cre")),
     person("Ian", "Cook", email = "ianmcook@gmail.com", role = c("aut")),
diff --git a/r/NEWS.md b/r/NEWS.md
index 813e0aa..e38e9e2 100644
--- a/r/NEWS.md
+++ b/r/NEWS.md
@@ -17,7 +17,7 @@
   under the License.
 -->
 
-# arrow 6.0.0
+# arrow 6.0.1
 
 There are now two ways to query Arrow data:
 
diff --git a/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb b/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb
index a713022..cc7fe01 100644
--- a/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb
+++ b/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb
@@ -16,7 +16,7 @@
 # under the License.
 
 module ArrowCUDA
-  VERSION = "6.0.0"
+  VERSION = "6.0.1"
 
   module Version
     numbers, TAG = VERSION.split("-")
diff --git a/ruby/red-arrow-dataset/lib/arrow-dataset/version.rb b/ruby/red-arrow-dataset/lib/arrow-dataset/version.rb
index da45372..1a37139 100644
--- a/ruby/red-arrow-dataset/lib/arrow-dataset/version.rb
+++ b/ruby/red-arrow-dataset/lib/arrow-dataset/version.rb
@@ -16,7 +16,7 @@
 # under the License.
 
 module ArrowDataset
-  VERSION = "6.0.0"
+  VERSION = "6.0.1"
 
   module Version
     numbers, TAG = VERSION.split("-")
diff --git a/ruby/red-arrow-flight/lib/arrow-flight/version.rb b/ruby/red-arrow-flight/lib/arrow-flight/version.rb
index 283bc32..b4a252b 100644
--- a/ruby/red-arrow-flight/lib/arrow-flight/version.rb
+++ b/ruby/red-arrow-flight/lib/arrow-flight/version.rb
@@ -16,7 +16,7 @@
 # under the License.
 
 module ArrowFlight
-  VERSION = "6.0.0"
+  VERSION = "6.0.1"
 
   module Version
     numbers, TAG = VERSION.split("-")
diff --git a/ruby/red-arrow/lib/arrow/version.rb b/ruby/red-arrow/lib/arrow/version.rb
index bf3b066..f830ff8 100644
--- a/ruby/red-arrow/lib/arrow/version.rb
+++ b/ruby/red-arrow/lib/arrow/version.rb
@@ -16,7 +16,7 @@
 # under the License.
 
 module Arrow
-  VERSION = "6.0.0"
+  VERSION = "6.0.1"
 
   module Version
     numbers, TAG = VERSION.split("-")
diff --git a/ruby/red-gandiva/lib/gandiva/version.rb b/ruby/red-gandiva/lib/gandiva/version.rb
index d1c8239..c78f165 100644
--- a/ruby/red-gandiva/lib/gandiva/version.rb
+++ b/ruby/red-gandiva/lib/gandiva/version.rb
@@ -16,7 +16,7 @@
 # under the License.
 
 module Gandiva
-  VERSION = "6.0.0"
+  VERSION = "6.0.1"
 
   module Version
     numbers, TAG = VERSION.split("-")
diff --git a/ruby/red-parquet/lib/parquet/version.rb b/ruby/red-parquet/lib/parquet/version.rb
index 6d9f39e..8c9b41a 100644
--- a/ruby/red-parquet/lib/parquet/version.rb
+++ b/ruby/red-parquet/lib/parquet/version.rb
@@ -16,7 +16,7 @@
 # under the License.
 
 module Parquet
-  VERSION = "6.0.0"
+  VERSION = "6.0.1"
 
   module Version
     numbers, TAG = VERSION.split("-")
diff --git a/ruby/red-plasma/lib/plasma/version.rb b/ruby/red-plasma/lib/plasma/version.rb
index d9d6224..36ead51 100644
--- a/ruby/red-plasma/lib/plasma/version.rb
+++ b/ruby/red-plasma/lib/plasma/version.rb
@@ -16,7 +16,7 @@
 # under the License.
 
 module Plasma
-  VERSION = "6.0.0"
+  VERSION = "6.0.1"
 
   module Version
     numbers, TAG = VERSION.split("-")

[arrow] 02/03: [Release] Update .deb/.rpm changelogs for 6.0.1

Posted by ko...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to annotated tag apache-arrow-6.0.1
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit 9a52dd4523820832aeca2d1032f7eb9f9991ca95
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Wed Nov 10 11:04:46 2021 +0900

    [Release] Update .deb/.rpm changelogs for 6.0.1
---
 dev/tasks/linux-packages/apache-arrow-apt-source/debian/changelog   | 6 ++++++
 .../apache-arrow-release/yum/apache-arrow-release.spec.in           | 3 +++
 dev/tasks/linux-packages/apache-arrow/debian/changelog              | 6 ++++++
 dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in             | 3 +++
 4 files changed, 18 insertions(+)

diff --git a/dev/tasks/linux-packages/apache-arrow-apt-source/debian/changelog b/dev/tasks/linux-packages/apache-arrow-apt-source/debian/changelog
index fefb30e..27e14c8 100644
--- a/dev/tasks/linux-packages/apache-arrow-apt-source/debian/changelog
+++ b/dev/tasks/linux-packages/apache-arrow-apt-source/debian/changelog
@@ -1,3 +1,9 @@
+apache-arrow-apt-source (6.0.1-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Sutou Kouhei <ko...@clear-code.com>  Wed, 10 Nov 2021 02:04:45 -0000
+
 apache-arrow-apt-source (6.0.0-1) unstable; urgency=low
 
   * New upstream release.
diff --git a/dev/tasks/linux-packages/apache-arrow-release/yum/apache-arrow-release.spec.in b/dev/tasks/linux-packages/apache-arrow-release/yum/apache-arrow-release.spec.in
index 894cf14..594cda3 100644
--- a/dev/tasks/linux-packages/apache-arrow-release/yum/apache-arrow-release.spec.in
+++ b/dev/tasks/linux-packages/apache-arrow-release/yum/apache-arrow-release.spec.in
@@ -91,6 +91,9 @@ else
 fi
 
 %changelog
+* Wed Nov 10 2021 Sutou Kouhei <ko...@clear-code.com> - 6.0.1-1
+- New upstream release.
+
 * Thu Oct 21 2021 Krisztián Szűcs <sz...@gmail.com> - 6.0.0-1
 - New upstream release.
 
diff --git a/dev/tasks/linux-packages/apache-arrow/debian/changelog b/dev/tasks/linux-packages/apache-arrow/debian/changelog
index 8dc2815..6594862 100644
--- a/dev/tasks/linux-packages/apache-arrow/debian/changelog
+++ b/dev/tasks/linux-packages/apache-arrow/debian/changelog
@@ -1,3 +1,9 @@
+apache-arrow (6.0.1-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Sutou Kouhei <ko...@clear-code.com>  Wed, 10 Nov 2021 02:04:45 -0000
+
 apache-arrow (6.0.0-1) unstable; urgency=low
 
   * New upstream release.
diff --git a/dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in b/dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in
index 941e4e7..3a8f71e 100644
--- a/dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in
+++ b/dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in
@@ -834,6 +834,9 @@ Documentation for Apache Parquet GLib.
 %{_datadir}/gtk-doc/html/parquet-glib/
 
 %changelog
+* Wed Nov 10 2021 Sutou Kouhei <ko...@clear-code.com> - 6.0.1-1
+- New upstream release.
+
 * Thu Oct 21 2021 Krisztián Szűcs <sz...@gmail.com> - 6.0.0-1
 - New upstream release.