diff --git a/CHANGELOG.md b/CHANGELOG.md index a474b1a3..75504abf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +## v1.11.0 (2024-12-05) + +### Feat + +- **projects.yaml**: Add tensile to intersphinx mapping + +### Fix + +- **article_info.py**: Remove svg if article info is empty +- **core.py**: Apply os list for article info fix for all article info option +- **article-info.html**: Only add apply to string if os list is not empty + +### Refactor + +- **article_info.py**: Apply mypy type check suggestions +- **article-info.html**: Add custom class to span with svgs in article info +- **core.py**: Split out article info logic into article_info.py +- Remove default author +- Modify markers in article-info.html +- **core.py**: Set default OS and date to empty +- **core.py**: Join article os info from list +- **core.py**: Set default article info os using all_article_info_os if not present + ## v1.10.0 (2024-11-29) ### Feat diff --git a/docs/conf.py b/docs/conf.py index 7c9716b6..039a272f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,8 +51,8 @@ "path": "demo/doxygen/xml", } -version = "1.10.0" -release = "1.10.0" +version = "1.11.0" +release = "1.11.0" html_title = f"ROCm Docs Core {version}" project = "ROCm Docs Core" author = "Advanced Micro Devices, Inc." diff --git a/pyproject.toml b/pyproject.toml index c12a635a..32f8f387 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = 'rocm-docs-core' -version = "1.10.0" +version = "1.11.0" authors=[ {name="Lauren Wrubleski", email="Lauren.Wrubleski@amd.com"} ] @@ -72,7 +72,7 @@ color = true [tool.commitizen] name = "cz_conventional_commits" -version = "1.10.0" +version = "1.11.0" version_files = ["pyproject.toml:^version", "docs/conf.py:^(version|release)"] tag_format = "v$version" annotated_tag = true