From 69ca952724824a0c75f0ec5dfa532184ac19abd8 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Tue, 6 Aug 2024 21:23:33 -0700 Subject: [PATCH] misc: Release v24.0.0.1 hotfix - Updates releases notes. - Increase the versioning from v24.0.0.0 to v24.0.0.1. Change-Id: I2f3f9eed06ecf74a5c6d86bb4dab25f1ff23b10d --- RELEASE-NOTES.md | 8 ++++++++ src/Doxyfile | 2 +- src/base/version.cc | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index c2c6b382e0..c7215a20da 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,3 +1,11 @@ +# Version 24.0.0.1 + +**[HOTFIX]** Fixes a bug affecting the use of the `IndirectMemoryPrefetcher`, `SignaturePathPrefetcher`, `SignaturePathPrefetcherV2`, `STeMSPrefetcher`, and `PIFPrefetcher` SimObjects. +Use of these resulted in gem5 crashing a gem5 crash with the error message "Need is_secure arg". + +The fix to this introduced to the gem5 develop branch in the Pull Request. +The commits in this PR were cherry-picked on the gem5 stable branch to create the v24.0.0.1 hotfix release. + # Version 24.0 gem5 Version 24.0 is the first major release of 2024. diff --git a/src/Doxyfile b/src/Doxyfile index 2206f17669..fc95f17d62 100644 --- a/src/Doxyfile +++ b/src/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = gem5 # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = v24.0.0.0 +PROJECT_NUMBER = v24.0.0.1 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/src/base/version.cc b/src/base/version.cc index dedbb425d3..ffbc7bd38d 100644 --- a/src/base/version.cc +++ b/src/base/version.cc @@ -32,6 +32,6 @@ namespace gem5 /** * @ingroup api_base_utils */ -const char *gem5Version = "24.0.0.0"; +const char *gem5Version = "24.0.0.1"; } // namespace gem5