diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 33fc67d2f8..2be9c0e137 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.9.0 +current_version = 1.9.1 commit = True message = Prepare for {new_version} release diff --git a/NEWS.rst b/NEWS.rst index 119459db13..448a875fd3 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -8,6 +8,17 @@ Changelog .. towncrier release notes start +memray 1.9.1 (2023-08-01) +------------------------- + +Bug Fixes +~~~~~~~~~ + +- Fix an issue that stopped Memray's experimental support for ``greenlet`` from working with versions of the ``greenlet`` module older than 1.0. (#432) +- Fix a bug leading to a deadlock when Memray is used to profile an application that uses the jemalloc implementation of ``malloc``. (#433) +- Fix a bug causing the ``summary`` reporter to generate empty reports. (#435) + + memray 1.9.0 (2023-07-28) ------------------------- diff --git a/news/432.bugfix.rst b/news/432.bugfix.rst deleted file mode 100644 index b1de06a927..0000000000 --- a/news/432.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix an issue that stopped Memray's experimental support for ``greenlet`` from working with versions of the ``greenlet`` module older than 1.0. diff --git a/news/433.bugfix.rst b/news/433.bugfix.rst deleted file mode 100644 index 4cbf31bcef..0000000000 --- a/news/433.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix a bug leading to a deadlock when Memray is used to profile an application that uses the jemalloc implementation of ``malloc``. diff --git a/news/435.bugfix.rst b/news/435.bugfix.rst deleted file mode 100644 index a273d7a333..0000000000 --- a/news/435.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix a bug causing the ``summary`` reporter to generate empty reports. diff --git a/src/memray/_version.py b/src/memray/_version.py index 0a0a43a57e..38cf6dbeb5 100644 --- a/src/memray/_version.py +++ b/src/memray/_version.py @@ -1 +1 @@ -__version__ = "1.9.0" +__version__ = "1.9.1"