You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by li...@apache.org on 2023/06/22 21:56:35 UTC

[arrow-adbc] annotated tag apache-arrow-adbc-0.1.0-rc4 updated (39765098 -> 86af00c1)

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

lidavidm pushed a change to annotated tag apache-arrow-adbc-0.1.0-rc4
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


*** WARNING: tag apache-arrow-adbc-0.1.0-rc4 was modified! ***

    from 39765098 (tag)
      to 86af00c1 (tag)
 tagging fb6ca9762d722500434d5ee09ddfcd7dd780df0b (commit)
      by David Li
      on Sat Dec 24 23:07:14 2022 -0500

- Log -----------------------------------------------------------------
ADBC Libraries 0.1.0 RC 4
-----------------------------------------------------------------------

 discard 4736bb3e chore: update versions for 0.1.0
 discard 834f1420 chore: update CHANGELOG.md for 0.1.0
    omit 10977ffc chore(dev/release): fix upload stage for Linux packages (#274)
     new fb6ca976 DO NOT MERGE

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   (39765098)
            \
             N -- N -- N   refs/tags/apache-arrow-adbc-0.1.0-rc4 (86af00c1)

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 1 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:
 .github/workflows/packaging.yml                |  7 +++++-
 CHANGELOG.md                                   | 31 --------------------------
 c/cmake_modules/AdbcVersion.cmake              |  2 +-
 docs/source/conf.py                            |  2 +-
 glib/meson.build                               |  2 +-
 java/core/pom.xml                              |  2 +-
 java/driver-manager/pom.xml                    |  2 +-
 java/driver/flight-sql-validation/pom.xml      |  2 +-
 java/driver/flight-sql/pom.xml                 |  2 +-
 java/driver/jdbc-validation-derby/pom.xml      |  2 +-
 java/driver/jdbc-validation-postgresql/pom.xml |  2 +-
 java/driver/jdbc/pom.xml                       |  2 +-
 java/driver/validation/pom.xml                 |  2 +-
 java/pom.xml                                   |  4 ++--
 java/sql/pom.xml                               |  2 +-
 ruby/lib/adbc/version.rb                       |  2 +-
 16 files changed, 21 insertions(+), 47 deletions(-)


[arrow-adbc] 01/01: DO NOT MERGE

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

lidavidm pushed a commit to annotated tag apache-arrow-adbc-0.1.0-rc4
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git

commit fb6ca9762d722500434d5ee09ddfcd7dd780df0b
Author: David Li <li...@gmail.com>
AuthorDate: Sat Dec 24 22:15:28 2022 -0500

    DO NOT MERGE
---
 .github/workflows/packaging.yml | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml
index 05a044e1..d0931a66 100644
--- a/.github/workflows/packaging.yml
+++ b/.github/workflows/packaging.yml
@@ -245,7 +245,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        arch: ["amd64", "arm64v8"]
+        arch: ["amd64"]
         manylinux_version: ["2014"]
         is_pr:
           - ${{ startsWith(github.ref, 'refs/pull/') }}
@@ -534,6 +534,8 @@ jobs:
         run: |
           RELEASE_TAG=${GITHUB_REF#refs/*/}
 
+          ls -laR release-artifacts/
+
           # Deduplicate wheels built in different jobs with same tag
           mkdir -p upload-staging
           find ./release-artifacts/ \
@@ -542,13 +544,16 @@ jobs:
               -name '*.jar' -or \
               -name '*.pom' -or \
               -name '*.whl' -or \
-              -name 'adbc_*.tar.gz' \
-              -name 'almalinux-*.tar.gz' \
-              -name 'debian-*.tar.gz' \
+              -name 'adbc_*.tar.gz' -or \
+              -name 'almalinux-*.tar.gz' -or \
+              -name 'debian-*.tar.gz' -or \
               -name 'ubuntu-*.tar.gz' \
             ')' \
+            -exec echo '{}' \; \
             -exec mv '{}' upload-staging \;
 
+          ls -laR upload-staging/
+
           UPLOAD=$(find upload-staging -type f | sort | uniq)
 
           echo "Uploading files:"