This is an automated email from the ASF dual-hosted git repository.
liurenjie1024 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git
The following commit(s) were added to refs/heads/main by this push:
new 471ef6b3 docs: remove -src suffix from artifact name (#1743)
471ef6b3 is described below
commit 471ef6b37f898ab4315efb5497714bb35c57ce11
Author: Kevin Liu <[email protected]>
AuthorDate: Tue Oct 14 19:56:20 2025 -0700
docs: remove -src suffix from artifact name (#1743)
## Which issue does this PR close?
- Closes #.
## What changes are included in this PR?
Context:
https://github.com/apache/iceberg-rust/issues/1631#issuecomment-3402485332
Aligns with other subproject's artifact naming convention
## Are these changes tested?
---
scripts/release.sh | 2 +-
website/src/release.md | 14 +++++++-------
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/scripts/release.sh b/scripts/release.sh
index 1f66b359..a790cdd8 100755
--- a/scripts/release.sh
+++ b/scripts/release.sh
@@ -47,7 +47,7 @@ python3 ./scripts/dependencies.py check
# Generate and verify artifacts
echo "> Start package"
-git archive --format=tar.gz
--output="dist/apache-iceberg-rust-$release_version-src.tar.gz"
--prefix="apache-iceberg-rust-$release_version-src/" --add-file=Cargo.toml
"$git_branch"
+git archive --format=tar.gz
--output="dist/apache-iceberg-rust-$release_version.tar.gz"
--prefix="apache-iceberg-rust-$release_version/" --add-file=Cargo.toml
"$git_branch"
cd dist
diff --git a/website/src/release.md b/website/src/release.md
index 28b98f17..78c0e575 100644
--- a/website/src/release.md
+++ b/website/src/release.md
@@ -143,9 +143,9 @@ After GitHub Release has been created, we can start to
create ASF Release.
- This script will do the following things:
- Create a new branch named by `release-${release_version}` from the
tag
- Generate the release candidate artifacts under `dist`, including:
- - `apache-iceberg-rust-${release_version}-src.tar.gz`
- - `apache-iceberg-rust-${release_version}-src.tar.gz.asc`
- - `apache-iceberg-rust-${release_version}-src.tar.gz.sha512`
+ - `apache-iceberg-rust-${release_version}.tar.gz`
+ - `apache-iceberg-rust-${release_version}.tar.gz.asc`
+ - `apache-iceberg-rust-${release_version}.tar.gz.sha512`
- Check the header of the source code. This step needs docker to run.
This script will create a new release under `dist`.
@@ -155,9 +155,9 @@ For example:
```shell
> tree dist
dist
-├── apache-iceberg-rust-0.2.0-src.tar.gz
-├── apache-iceberg-rust-0.2.0-src.tar.gz.asc
-└── apache-iceberg-rust-0.2.0-src.tar.gz.sha512
+├── apache-iceberg-rust-0.2.0.tar.gz
+├── apache-iceberg-rust-0.2.0.tar.gz.asc
+└── apache-iceberg-rust-0.2.0.tar.gz.sha512
```
### Upload artifacts to the SVN dist repo
@@ -325,7 +325,7 @@ After downloading them, here are the instructions on how to
verify them.
```bash
gpg --verify apache-iceberg-rust-*.tar.gz.asc
```
- Expects: `"apache-iceberg-rust-0.7.0-src.tar.gz: OK"`
+ Expects: `"apache-iceberg-rust-0.7.0.tar.gz: OK"`
* Verify the checksums:
```bash