Add historical ROCm changelog #305

This commit is contained in:
Peter Park
2025-03-20 13:57:37 -04:00
committed by GitHub
parent fa9bf4b286
commit 062383e52b
5 changed files with 6160 additions and 4 deletions

3
.gitignore vendored
View File

@@ -15,7 +15,6 @@ _readthedocs/
__pycache__/
# avoid duplicating contributing.md due to conf.py
docs/CHANGELOG.md
docs/contribute/index.md
docs/about/release-notes.md
docs/about/changelog.md
docs/release/changelog.md

View File

@@ -12,6 +12,5 @@ config:
MD041: false
MD051: false
ignores:
- CHANGELOG.md
- "{,docs/}{RELEASE,release}.md"
- "{,docs/}{RELEASE,release,CHANGELOG,changelog}.md"
- tools/autotag/templates/**/*.md

6154
CHANGELOG.md Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -32,6 +32,9 @@ The release notes provide a summary of notable changes since the previous ROCm r
If youre using Radeon™ PRO or Radeon GPUs in a workstation setting with a display connected, see the [Use ROCm on Radeon GPUs](https://rocm.docs.amd.com/projects/radeon/en/latest/docs/compatibility/native_linux/native_linux_compatibility.html)
documentation to verify compatibility and system requirements.
```
For a historical overview of ROCm component updates, see the {doc}`ROCm consolidated changelog </release/changelog>`.
## Release highlights
The following are notable new features and improvements in ROCm 6.4.0. For changes to individual components, see

View File

@@ -10,6 +10,7 @@ import sys
from pathlib import Path
shutil.copy2("../RELEASE.md", "./about/release-notes.md")
shutil.copy2("../CHANGELOG.md", "./release/changelog.md")
os.system("mkdir -p ../_readthedocs/html/downloads")
os.system("cp compatibility/compatibility-matrix-historical-6.0.csv ../_readthedocs/html/downloads/compatibility-matrix-historical-6.0.csv")