Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions dev/release/post-06-ruby.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
#!/usr/bin/env bash
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

set -e
set -u
set -o pipefail

main() {
if [ "$#" -ne 1 ]; then
echo "Usage: $0 <version>"
echo "Usage: $0 1.0.0"
exit 1
fi

local -r version="$1"

archive_name=apache-arrow-adbc-${version}

tar_gz=${archive_name}.tar.gz

rm -f ${tar_gz}
curl \
--remote-name \
--fail \
https://downloads.apache.org/arrow/apache-arrow-adbc-${version}/${tar_gz}
rm -rf ${archive_name}
tar xf ${tar_gz}

read -p "Please enter your RubyGems MFA one-time password (or leave empty if you don't have MFA enabled): " GEM_HOST_OTP_CODE </dev/tty
export GEM_HOST_OTP_CODE

pushd ${archive_name}/ruby
rake release
popd

rm -rf ${archive_name}
rm -f ${tar_gz}

echo "Success! The released RubyGems are available here:"
echo " https://rubygems.org/gems/red-adbc/versions/${version}"
}

main "$@"
25 changes: 22 additions & 3 deletions docs/source/development/releasing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,25 @@ Be sure to go through on the following checklist:
# dev/release/post-05-linux.sh ../arrow 10.0.0 0
dev/release/post-05-linux.sh <arrow-dir> <version> <rc-number>

.. dropdown:: Upload Ruby packages to RubyGems
:class-title: sd-fs-5
:class-container: sd-shadow-md

You must be one of owners of https://rubygems.org/gems/red-adbc
. If you aren't an owner of red-adbc yet, an existing owner must
run the following command line to add you to red-adbc owners:

.. code-block:: Bash

gem owner -a ${RUBYGEMS_ORG_ACCOUNT_FOR_RELEASE_MANAGER} red-adbc

An owner of red-adbc can upload:

.. code-block:: Bash

# dev/release/post-06-ruby.sh 1.0.0
dev/release/post-06-ruby.sh <version>

.. dropdown:: Announce the new release
:class-title: sd-fs-5
:class-container: sd-shadow-md
Expand All @@ -373,7 +392,7 @@ Be sure to go through on the following checklist:

.. code-block:: Bash

dev/release/post-06-remove-old-artifacts.sh
dev/release/post-07-remove-old-artifacts.sh

.. dropdown:: Bump versions
:class-title: sd-fs-5
Expand All @@ -385,7 +404,7 @@ Be sure to go through on the following checklist:

.. code-block:: Bash

# dev/release/post-07-bump-versions.sh ../arrow 0.1.0 0.2.0
dev/release/post-07-bump-versions.sh <arrow-dir> <version> <next_version>
# dev/release/post-08-bump-versions.sh ../arrow 0.1.0 0.2.0
dev/release/post-08-bump-versions.sh <arrow-dir> <version> <next_version>

.. _nightly-website.yml: https://github.com/apache/arrow-adbc/actions/workflows/nightly-website.yml