From 0d703041fcd5d119012b62287695723a2955b408 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Wed, 11 Nov 2020 13:34:23 -0800 Subject: [PATCH] misc: Updated the RELEASE-NOTES and version number Updated the RELEASE-NOTES.md and version number for the v20.1.0.2 hotfix release. Change-Id: Ibb6b62a36bd1f9084f7d8311ff1f94b8564dbe9b Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/37435 Reviewed-by: Bobby R. Bruce Maintainer: Bobby R. Bruce Tested-by: kokoro --- RELEASE-NOTES.md | 7 +++++++ src/Doxyfile | 2 +- src/base/version.cc | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 46c879570..71934a732 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,3 +1,10 @@ +# Version 20.1.0.2 + +**[HOTFIX]** This hotfix release fixes known two bugs: + +* A "ValueError: invalid literal for int() with base..." error was being thrown in certain circumstances due to a non-integer being passed to "MemorySize" via a division operation. This has been rectified. +* An assertion in Stats could be triggered due to a name collision between two ThreadStateStats objects, due to both erroneously sharing the same ThreadID. This has been fixed. + # Version 20.1.0.1 **[HOTFIX]** A patch was applied to fix the Garnet network interface stats. diff --git a/src/Doxyfile b/src/Doxyfile index 83770d5f9..b9346390c 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 = v20.1.0.1 +PROJECT_NUMBER = v20.1.0.2 # 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 3ad07fa6d..304ccc19c 100644 --- a/src/base/version.cc +++ b/src/base/version.cc @@ -29,4 +29,4 @@ /** * @ingroup api_base_utils */ -const char *gem5Version = "20.1.0.1"; +const char *gem5Version = "20.1.0.2"; -- 2.30.2