From a9f544f3f7fca8310ee3d9a15212e26792ccd73e Mon Sep 17 00:00:00 2001 From: Pablo Galindo Date: Tue, 20 Jun 2023 14:25:35 +0100 Subject: [PATCH] Prepare for 1.8.1 release See changelog for more details. Signed-off-by: Pablo Galindo --- .bumpversion.cfg | 2 +- NEWS.rst | 17 +++++++++++++++++ news/399.bugfix.1.rst | 1 - news/399.bugfix.2.rst | 1 - news/399.feature.rst | 1 - news/401.bugfix.rst | 1 - src/memray/_version.py | 2 +- 7 files changed, 19 insertions(+), 6 deletions(-) delete mode 100644 news/399.bugfix.1.rst delete mode 100644 news/399.bugfix.2.rst delete mode 100644 news/399.feature.rst delete mode 100644 news/401.bugfix.rst diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d3750b133e..7426a53d60 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.8.0 +current_version = 1.8.1 commit = True message = Prepare for {new_version} release diff --git a/NEWS.rst b/NEWS.rst index 6c2185915e..3f534a2ac0 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -8,6 +8,23 @@ Changelog .. towncrier release notes start +memray 1.8.1 (2023-06-20) +------------------------- + +Features +~~~~~~~~ + +- When the high water mark being shown by a temporal flame graph is before the first memory snapshot or after the last one, tell the user so by highlighting a region beyond the end of the memory usage plot. (#399) + + +Bug Fixes +~~~~~~~~~ + +- Prevent a totally empty memory plot from being shown on flame graphs when the tracked process completes before any periodic memory snapshots are captured. (#399) +- Fix a bug that prevented the temporal high water mark flame graph from showing the flame graph of a high water mark that occurred after the final periodic memory snapshot was captured. (#399) +- Fix a bug that prevented Memray from intercepting functions in shared objects that are part of the dyld shared cache in macOS Ventura. (#401) + + memray 1.8.0 (2023-06-09) ------------------------- diff --git a/news/399.bugfix.1.rst b/news/399.bugfix.1.rst deleted file mode 100644 index a09e44b75f..0000000000 --- a/news/399.bugfix.1.rst +++ /dev/null @@ -1 +0,0 @@ -Prevent a totally empty memory plot from being shown on flame graphs when the tracked process completes before any periodic memory snapshots are captured. diff --git a/news/399.bugfix.2.rst b/news/399.bugfix.2.rst deleted file mode 100644 index 279f10b197..0000000000 --- a/news/399.bugfix.2.rst +++ /dev/null @@ -1 +0,0 @@ -Fix a bug that prevented the temporal high water mark flame graph from showing the flame graph of a high water mark that occurred after the final periodic memory snapshot was captured. diff --git a/news/399.feature.rst b/news/399.feature.rst deleted file mode 100644 index 8d6ed92c8a..0000000000 --- a/news/399.feature.rst +++ /dev/null @@ -1 +0,0 @@ -When the high water mark being shown by a temporal flame graph is before the first memory snapshot or after the last one, tell the user so by highlighting a region beyond the end of the memory usage plot. diff --git a/news/401.bugfix.rst b/news/401.bugfix.rst deleted file mode 100644 index 162b647667..0000000000 --- a/news/401.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix a bug that prevented Memray from intercepting functions in shared objects that are part of the dyld shared cache in macOS Ventura. diff --git a/src/memray/_version.py b/src/memray/_version.py index 29654eec0a..2d986fc505 100644 --- a/src/memray/_version.py +++ b/src/memray/_version.py @@ -1 +1 @@ -__version__ = "1.8.0" +__version__ = "1.8.1"