This is an automated email from the ASF dual-hosted git repository. gurwls223 pushed a commit to branch branch-4.0 in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-4.0 by this push: new cf176150d2c4 [MINOR][BUILD] Remove `preview` postfix in documentation.md when releasing cf176150d2c4 is described below commit cf176150d2c4358f1bb7edddbd383093071cd1a3 Author: Hyukjin Kwon <gurwls...@apache.org> AuthorDate: Wed Sep 3 09:55:37 2025 +0900 [MINOR][BUILD] Remove `preview` postfix in documentation.md when releasing ### What changes were proposed in this pull request? This PR proposes to remove `preview` postfix in `documentation.md` when releasing ### Why are the changes needed? To be consistent. `preview` postfix is not needed, see https://github.com/apache/spark-website/blob/asf-site/documentation.md ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Manually tested. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #52206 from HyukjinKwon/remove-preview-postfix. Authored-by: Hyukjin Kwon <gurwls...@apache.org> Signed-off-by: Hyukjin Kwon <gurwls...@apache.org> (cherry picked from commit 41c43466db5c221fb3a56a39b44c59cc215f4d54) Signed-off-by: Hyukjin Kwon <gurwls...@apache.org> --- dev/create-release/release-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/create-release/release-build.sh b/dev/create-release/release-build.sh index ed71f6fc14d9..9e12d21c4fb8 100755 --- a/dev/create-release/release-build.sh +++ b/dev/create-release/release-build.sh @@ -171,7 +171,7 @@ is_preview = bool(re.search(r'-preview\d*$', release_version)) base_version = re.sub(r'-preview\d*$', '', release_version) stable_newline = f' <li><a href="{{{{site.baseurl}}}}/docs/{release_version}/">Spark {release_version}</a></li>' -preview_newline = f' <li><a href="{{{{site.baseurl}}}}/docs/{release_version}/">Spark {release_version} preview</a></li>' +preview_newline = f' <li><a href="{{{{site.baseurl}}}}/docs/{release_version}/">Spark {release_version}</a></li>' inserted = False --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org