blob: 2f9ea4311bd91e32cce41306aa81437d3277889a [file] [log] [blame] [view]
<!---
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.
-->
# Release
## Overview
1. Test the revision to be released
2. Bump version for new release (detailed later)
3. Prepare RC and vote (detailed later)
4. Publish (detailed later)
5. Announce the new release on social media (detailed later)
## Prepare release environment
This step is needed only when you act as a release manager the first time.
We use the following variables in multiple steps:
* `GH_TOKEN`: GitHub personal access token to automate GitHub related
operations
* `GPG_KEY_ID`: PGP key ID that is used for signing official artifacts
by GnuPG
* `NUGET_API_KEY`: API key for https://www.nuget.org/ that is used for
publishing packages
We use `dev/release/.env` to share these variables in multiple
steps. You can use `dev/release/.env.example` as a template:
```console
$ cp dev/release/.env{.example,}
$ chmod go-r dev/release/.env
$ editor dev/release/.env
```
See
https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens
how to prepare GitHub personal access token for `GH_TOKEN`.
Note that you also need to install `gh` command because our scripts
use `gh` command to use GitHub API. See
https://github.com/cli/cli#installation how to install `gh`
command.
If you don't have a PGP key for `GPG_KEY_ID`, see
https://infra.apache.org/release-signing.html#genegrate how to
generate your PGP key.
Your PGP key must be registered to the followings:
* https://dist.apache.org/repos/dist/dev/arrow/KEYS
* https://dist.apache.org/repos/dist/release/arrow/KEYS
See the header comment of them how to add a PGP key.
Apache arrow committers can update them by Subversion client with
their ASF account. e.g.:
```console
$ svn co https://dist.apache.org/repos/dist/dev/arrow
$ cd arrow
$ head KEYS
(This shows how to update KEYS)
$ svn ci KEYS
```
You can generate a NuGet API key for `NUGET_API_KEY` at
https://www.nuget.org/account/apikeys .
## Bump version for new release
Open a PR that bumps version in `Directory.Build.props` for new
release. We must follow [Semantic
Versioning](https://semver.org/). For example, we must bump major
version when we have any incompatible changes.
You can proceed to the next step once we merge the opened PR.
## Prepare RC and vote
You can use `dev/release/release_rc.sh`.
Requirements to run `release_rc.sh`:
* You must be an Apache Arrow committer or PMC member
* You must prepare your PGP key for signing
Run `dev/release/release_rc.sh` on a working copy of
`git@github.com:apache/arrow-dotnet` not your fork:
```console
$ git clone git@github.com:apache/arrow-dotnet.git
$ cd arrow-dotnet
$ dev/release/release_rc.sh ${RC}
(Send a vote email to dev@arrow.apache.org.
You can use a draft shown by release_rc.sh for the email.)
```
Here is an example to release RC0:
```console
$ dev/release/release_rc.sh 0
```
The arguments of `release_rc.sh` are the version and the RC number. If
RC0 has a problem, we'll increment the RC number such as RC1, RC2 and
so on.
## Publish
We need to do the followings to publish a new release:
* Publish the source archive to apache.org
Run `dev/release/release.sh` on a working copy of
`git@github.com:apache/arrow-dotnet` not your fork to publish the
source archive to apache.org:
```console
$ dev/release/release.sh ${RC}
```
Here is an example to release RC0:
```console
$ dev/release/release.sh 0
```
It generates a draft announce email. Send it to `announce@apache.org`
from your Apache email, Cc'ing `dev@arrow.apache.org` and
`user@arrow.apache.org`.
Add the release to ASF's report database via [Apache Committee Report
Helper](https://reporter.apache.org/addrelease.html?arrow).
## Announce the new release on social media
Make a post on our [BlueSky](https://bsky.app/profile/arrow.apache.org) and
[LinkedIn](https://www.linkedin.com/company/apache-arrow/) accounts. (Ask
your fellow PMC members for access if need be, or ask a PMC member to make the
post on your behalf.) The post should link to the blog post. See [example
BlueSky post](https://bsky.app/profile/arrow.apache.org/post/3lioi6ov5h22d)
and [example LinkedIn post](https://www.linkedin.com/posts/apache-arrow_apache-arrow-java-1820-release-activity-7298633716522758144-L71x).
## Verify
We have a script to verify a RC.
You must install the following commands to use the script:
* `curl`
* `go`
* `gpg`
* `shasum` or `sha256sum`/`sha512sum`
* `dotnet`
* `tar`
To verify a RC, run the following command line:
```console
$ dev/release/verify_rc.sh ${VERSION} ${RC}
```
Here is an example to verify the release 22.0.0 RC0:
```console
$ dev/release/verify_rc.sh 22.0.0 0
```
If the verification is successful, the message `RC looks good!` is shown.