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

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


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

    from 20fa854  (tag)
      to 23b5e55  (tag)
 tagging b0d623957db820de4f1ff0a5ebd3e888194a48f0 (commit)
 replaces apache-arrow-0.17.0
      by Krisztián Szűcs
      on Mon Jul 20 22:49:26 2020 +0200

- Log -----------------------------------------------------------------
[maven-release-plugin] copy for tag apache-arrow-1.0.0
-----------------------------------------------------------------------

 discard bc06495  [maven-release-plugin] prepare release apache-arrow-1.0.0
 discard 61a49fc  [Release] Update versions for 1.0.0
 discard 57dbcdc  [Release] Update .deb/.rpm changelogs for 1.0.0
 discard 24a9484  [Release] Update CHANGELOG.md for 1.0.0
     add d9525f1  ARROW-9503: [Rust] Comparison sliced arrays is wrong
     add 2e702f0  ARROW-9461: [Rust] Fixed error in reading Date32 and Date64.
     add 8a8d7ce  ARROW-9512: [C++] Avoid variadic template unpack inside 
lambda to work around gcc 4.8 bug
     add 83679f3  ARROW-9529: [Dev][Release] Improvements to release 
verification scripts
     add 6af5893  ARROW-9524: [CI][Gandiva] Fix c++ unit test failure in 
Gandiva nightly build
     add 423d5e7  ARROW-9501: Add logic in timestampdiff() when end date is 
last day of…
     add 72feff1  ARROW-9511: [Packaging][Release] Set conda packages' build 
number to 0
     add 23b19f6  Revert "ARROW-9223: [Python] Propagate timezone information 
in pandas conversion" (#7802)
     add 7642d16  ARROW-9531: [Packaging][Release] Update conda forge 
dependency pins
     add c7f8128  ARROW-9519 [Rust] Improved error message when getting a field 
by name.
     add a27497f  ARROW-9527: [Rust] Removed un-used dev dependencies.
     new 88b767b  [Release] Update CHANGELOG.md for 1.0.0
     new 240d98d  [Release] Update .deb/.rpm changelogs for 1.0.0
     new 3473b01  [Release] Update versions for 1.0.0
     new b0d6239  [maven-release-plugin] prepare release apache-arrow-1.0.0

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   (20fa854)
            \
             N -- N -- N   refs/tags/apache-arrow-1.0.0 (23b5e55)

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 4 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                                       |  16 ++-
 cpp/src/arrow/python/arrow_to_pandas.cc            |  36 +++----
 cpp/src/arrow/python/arrow_to_pandas.h             |   4 +
 cpp/src/arrow/python/datetime.cc                   |  83 +---------------
 cpp/src/arrow/python/datetime.h                    |  10 --
 cpp/src/arrow/testing/gtest_util.cc                |  24 ++---
 .../gandiva/precompiled/timestamp_arithmetic.cc    |  33 ++++++-
 cpp/src/gandiva/tests/date_time_test.cc            |  58 +++++++++++
 dev/release/verify-release-candidate-wheels.bat    |  22 ++++-
 dev/release/verify-release-candidate.bat           |   4 +-
 dev/release/verify-release-candidate.sh            |   7 +-
 .../linux_aarch64_python3.6.____cpython.yaml       |   8 +-
 .../linux_aarch64_python3.7.____cpython.yaml       |   8 +-
 .../linux_aarch64_python3.8.____cpython.yaml       |   8 +-
 ...a_compiler_version9.2python3.6.____cpython.yaml |   8 +-
 ...a_compiler_version9.2python3.7.____cpython.yaml |   8 +-
 ...a_compiler_version9.2python3.8.____cpython.yaml |   8 +-
 ..._compiler_versionNonepython3.6.____cpython.yaml |   8 +-
 ..._compiler_versionNonepython3.7.____cpython.yaml |   8 +-
 ..._compiler_versionNonepython3.8.____cpython.yaml |   8 +-
 .../.ci_support/osx_python3.6.____cpython.yaml     |  12 +--
 .../.ci_support/osx_python3.7.____cpython.yaml     |  12 +--
 .../.ci_support/osx_python3.8.____cpython.yaml     |  12 +--
 .../.ci_support/win_python3.6.____cpython.yaml     |   8 +-
 .../.ci_support/win_python3.7.____cpython.yaml     |   8 +-
 .../.ci_support/win_python3.8.____cpython.yaml     |   8 +-
 dev/tasks/conda-recipes/arrow-cpp/meta.yaml        |   2 +-
 dev/tasks/conda-recipes/azure.win.yml              |   9 +-
 dev/tasks/gandiva-jars/build-cpp-linux.sh          |   1 +
 dev/tasks/gandiva-jars/travis.linux.yml            |   2 +-
 dev/tasks/gandiva-jars/travis.osx.yml              |   2 +
 .../apache-arrow-archive-keyring/debian/changelog  |   2 +-
 .../yum/apache-arrow-release.spec.in               |   2 +-
 .../apache-arrow/debian.ubuntu-xenial/changelog    |   2 +-
 .../linux-packages/apache-arrow/debian/changelog   |   2 +-
 .../linux-packages/apache-arrow/yum/arrow.spec.in  |   2 +-
 dev/tasks/tasks.yml                                |   6 +-
 python/pyarrow/array.pxi                           |   4 +-
 python/pyarrow/includes/libarrow.pxd               |   1 -
 python/pyarrow/tests/test_pandas.py                |  49 +++------
 python/pyarrow/types.pxi                           |  14 ++-
 rust/arrow/Cargo.toml                              |   1 -
 rust/arrow/src/compute/kernels/comparison.rs       |  26 +++--
 rust/arrow/src/datatypes.rs                        |  15 ++-
 rust/datafusion/Cargo.toml                         |   1 -
 rust/parquet/Cargo.toml                            |   1 -
 rust/parquet/src/arrow/array_reader.rs             |  23 +++--
 rust/parquet/src/arrow/converter.rs                | 109 +++++++++------------
 48 files changed, 340 insertions(+), 365 deletions(-)

Reply via email to