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