diff --git a/RELEASE.md b/RELEASE.md
index b6ca4b752..1fb1c6da9 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -399,7 +399,7 @@ Expect future releases in this stream to expand the list of components.
ROCprofiler-SDK
- |
+ |
System utilities, profiling, and debugging
|
@@ -815,13 +815,6 @@ future releases.
|
-
|
Math and compute libraries
diff --git a/docs/conf.py b/docs/conf.py
index 317da0c82..0a9ac16d2 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -157,7 +157,7 @@ html_theme_options = {
"secondary_sidebar_items": {
"**": ["page-toc"],
"install/rocm": ["selector-toc2"],
- "install/compatibility-matrix": ["selector-toc2"],
+ "compatibility/compatibility-matrix": ["selector-toc2"],
}
}
html_title = f"AMD ROCm {ROCM_VERSION} preview"
diff --git a/docs/install/build-from-source.rst b/docs/install/build-from-source.rst
index b3cd123bf..bae8fb2d1 100644
--- a/docs/install/build-from-source.rst
+++ b/docs/install/build-from-source.rst
@@ -38,7 +38,7 @@ following resources:
* `Environment setup guide
`__
-* :doc:`compatibility-matrix`
+* :doc:`/compatibility/compatibility-matrix`
High-level build process
========================
diff --git a/docs/install/includes/2_rhel-instinct-install-kmd.md b/docs/install/includes/2_rhel-instinct-install-kmd.md
index d20fbd683..a28a82ead 100644
--- a/docs/install/includes/2_rhel-instinct-install-kmd.md
+++ b/docs/install/includes/2_rhel-instinct-install-kmd.md
@@ -1,4 +1,4 @@
-For information about driver compatibility, see the {doc}`compatibility-matrix`.
+For information about driver compatibility, see the {doc}`/compatibility/compatibility-matrix`.
For information about the AMD GPU driver installation, see the
[RHEL native
diff --git a/docs/install/includes/2_ubuntu-instinct-install-kmd.md b/docs/install/includes/2_ubuntu-instinct-install-kmd.md
index dba7368de..f8abb887d 100644
--- a/docs/install/includes/2_ubuntu-instinct-install-kmd.md
+++ b/docs/install/includes/2_ubuntu-instinct-install-kmd.md
@@ -1,4 +1,4 @@
-For information about driver compatibility, see the {doc}`compatibility-matrix`.
+For information about driver compatibility, see the {doc}`compatibility/compatibility-matrix`.
For information about the AMD GPU driver installation, see the
[Ubuntu native
diff --git a/docs/install/pytorch-comfyui.rst b/docs/install/pytorch-comfyui.rst
index a75053a33..74f114ba8 100644
--- a/docs/install/pytorch-comfyui.rst
+++ b/docs/install/pytorch-comfyui.rst
@@ -20,7 +20,7 @@ Before beginning, ensure your system meets these requirements:
- ROCm 7.9.0: A working ROCm installation (if not already installed via pip, this guide covers the setup)
-Review the :doc:`ROCm 7.9.0 compatibility ` information.
+Review the :doc:`ROCm 7.9.0 compatibility ` information.
.. _790-install-pyt:
diff --git a/docs/install/rocm.rst b/docs/install/rocm.rst
index f7ab1beb3..4f50a0fbf 100644
--- a/docs/install/rocm.rst
+++ b/docs/install/rocm.rst
@@ -8,7 +8,7 @@ Install AMD ROCm 7.9.0
Use the following selector to choose your installation method for your
supported AMD GPU or APU and operating system. For information about supported
operating systems and compatible AMD devices, see the :doc:`Compatibility matrix
-`.
+`.
.. selector:: AMD product family
:key: plat
diff --git a/docs/about/versions.md b/docs/release/versions.md
similarity index 91%
rename from docs/about/versions.md
rename to docs/release/versions.md
index df41d1a74..29b4a0d8f 100644
--- a/docs/about/versions.md
+++ b/docs/release/versions.md
@@ -8,7 +8,7 @@
| Version | Release date |
| ------- | ------------ |
-| [7.9.0](https://rocm.docs.amd.com/en/docs-7.9.0/) | October 20, 2025 |
+| [7.9.0](https://rocm.docs.amd.com/en/7.9.0-preview/) | October 20, 2025 |
```{important}
ROCm 7.9.0 introduces a versioning discontinuity following
diff --git a/docs/sphinx/_toc.yml.in b/docs/sphinx/_toc.yml.in
index 78bcd452d..ca4f21acb 100644
--- a/docs/sphinx/_toc.yml.in
+++ b/docs/sphinx/_toc.yml.in
@@ -8,7 +8,7 @@ subtrees:
- entries:
- file: about/release-notes.md
title: Release notes
- - file: install/compatibility-matrix.md
+ - file: compatibility/compatibility-matrix.md
title: Compatibility matrix
- caption: Installation
entries:
diff --git a/docs/sphinx/static/version-history-link.js b/docs/sphinx/static/version-history-link.js
index bb73fdc47..45260e608 100644
--- a/docs/sphinx/static/version-history-link.js
+++ b/docs/sphinx/static/version-history-link.js
@@ -12,5 +12,5 @@ ready(() => {
);
versionListLink.textContent = "Preview versions";
versionListLink.href =
- "https://rocm.docs.amd.com/en/docs-7.9.0/about/versions.html";
+ "https://rocm.docs.amd.com/en/docs-7.9.0/release/versions.html";
});
|