This is an automated email from the ASF dual-hosted git repository. gurwls223 pushed a commit to branch branch-3.5 in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-3.5 by this push: new d39d1e09b4d6 [MINOR][BUILD] Remove `preview` postfix in documentation.md when releasing d39d1e09b4d6 is described below commit d39d1e09b4d60d6f8a0de6a6a55d7540165ffaca 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 950bb48ca7b4..a9dd229f6c69 100755 --- a/dev/create-release/release-build.sh +++ b/dev/create-release/release-build.sh @@ -156,7 +156,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