@@ -57,27 +57,27 @@ def update_library_version_documentation_urls_all_versions():
5757def update_library_version_website_adoc ():
5858 """Refresh parsed meta/website.adoc for the current release.
5959
60- Scoped to the most recent version and fetched from `master ` so maintainer
60+ Scoped to the most recent version and fetched from `develop ` so maintainer
6161 edits between releases are picked up. Historical versions keep the snapshot
6262 captured at their release import — a tagged release's meta/website.adoc is
6363 immutable, so re-fetching every version daily would be redundant.
6464
65- Skipped while a newer release is in beta: `master ` has already drifted toward
65+ Skipped while a newer release is in beta: `develop ` has already drifted toward
6666 that release, so refreshing the current stable from it would surface
6767 pre-release content on the stable page. The stable keeps its release-tag
6868 import snapshot until the beta becomes the full release.
6969 """
7070 version = Version .objects .most_recent ()
7171 if version is None :
7272 return
73- # During a beta cycle for the NEXT release, each library's `master ` has
73+ # During a beta cycle for the NEXT release, each library's `develop ` has
7474 # already drifted toward that release, so refreshing the current stable from
75- # master would show it pre-release content. Hold until the beta is promoted
75+ # develop would show it pre-release content. Hold until the beta is promoted
7676 # to a full release.
7777 beta = Version .objects .most_recent_beta ()
7878 if beta and beta .cleaned_version_parts > version .cleaned_version_parts :
7979 return
80- store_library_version_website_adoc (version , ref = "master " )
80+ store_library_version_website_adoc (version , ref = "develop " )
8181
8282
8383def store_library_version_website_adoc (version , ref ):
0 commit comments