You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use highest semver tag for stable docs, not most recent
The deploy-docs workflow previously picked the release tag with the most
recent creation date. A maintenance patch on an older minor (e.g. 0.4.3
after 0.5.0) would cause stable docs to regress to that older codebase.
Switch to sorting by semver version so stable docs always reflect the
latest release line.
Copy file name to clipboardExpand all lines: PUBLISHING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -152,7 +152,7 @@ The documentation site serves two versions:
152
152
-**Stable** (root URL) — built from the most recent release tag (across all branches)
153
153
-**Dev** (`/dev/`) — built from `main`, updated on every push
154
154
155
-
Stable docs are rebuilt after every stable or release branch publish. The `deploy-docs.yml` workflow finds the most recent release tag by creation date across all branches, so tags from release branches are picked up automatically.
155
+
Stable docs are rebuilt after every stable or release branch publish. The `deploy-docs.yml` workflow builds from the highest semver release tag, so stable docs always reflect the latest release line. Maintenance patches on older minors do not affect stable docs.
0 commit comments