Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: Add download page #219

Merged
merged 2 commits into from
Feb 23, 2024
Merged
Changes from 1 commit
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
42 changes: 42 additions & 0 deletions website/src/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,45 @@
~ under the License.
-->

# Apache Iceberg-Rust™ Downloads
liurenjie1024 marked this conversation as resolved.
Show resolved Hide resolved

The official Apache Iceberg-Rust releases are provided as source artifacts.

## Releases

The latest source release is [0.2.0](https://archive.apache.org/dist/iceberg/iceberg-rust-0.2.0/apache-iceberg-rust-0.2.0-src.tar.gz) ([asc](https://archive.apache.org/dist/iceberg/iceberg-rust-0.2.0/apache-iceberg-rust-0.2.0-src.tar.gz.asc),
liurenjie1024 marked this conversation as resolved.
Show resolved Hide resolved
[sha512](https://archive.apache.org/dist/iceberg/iceberg-rust-0.2.0/apache-iceberg-rust-0.2.0-src.tar.gz.sha512)).
liurenjie1024 marked this conversation as resolved.
Show resolved Hide resolved

For older releases, please check the [archive](https://archive.apache.org/dist/iceberg/).

## Notes

* When downloading a release, please verify the OpenPGP compatible signature (or failing that, check the SHA-512); these should be fetched from the main Apache site.
* The KEYS file contains the public keys used for signing release. It is recommended that (when possible) a web of trust is used to confirm the identity of these keys.
* Please download the [KEYS](https://archive.apache.org/dist/iceberg/KEYS) as well as the .asc signature files.
liurenjie1024 marked this conversation as resolved.
Show resolved Hide resolved

### To verify the signature of the release artifact

You will need to download both the release artifact and the .asc signature file for that artifact. Then verify the signature by:

* Download the KEYS file and the .asc signature files for the relevant release artifacts.
* Import the KEYS file to your GPG keyring:

```shell
gpg --import KEYS
```

* Verify the signature of the release artifact using the following command:

```shell
gpg --verify <artifact>.asc <artifact>
```

### To verify the checksum of the release artifact

You will need to download both the release artifact and the .sha512 checksum file for that artifact. Then verify the checksum by:

```shell
shasum -a 512 -c <artifact>.sha512
```

Loading