diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 20d86b31ec..a94aae572a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.11.0 +current_version = 1.12.0 commit = True message = Prepare for {new_version} release diff --git a/NEWS.rst b/NEWS.rst index 3b3d7a053d..e47990ee35 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -8,6 +8,25 @@ Changelog .. towncrier release notes start +memray 1.12.0 (2024-03-07) +-------------------------- + +Features +~~~~~~~~ + +- Allow ``--temporal`` and ``--max-memory-records`` to be used with our :ref:`Jupyter magic `. (#538) +- Automatically use aggregated capture files for the :ref:`Jupyter magic ` whenever possible, reducing the amount of disk space needed for temporary files. (#538) +- Expose the main thread id in the FileReader's metadata attribute. (#560) + + +Bug Fixes +~~~~~~~~~ + +- Fix a bug that was causing ``dlopen`` to not load shared libraries that have an RPATH/RUNPATH set. (#525) +- Fix a bug where the tree reporter would fail to populate the code pane with relevant lines if the line where the allocation occurred was too near the start of the file. (#544) +- Fix a bug causing the first entry of ``sys.path`` to be erroneously overwritten by ``memray run`` when the Python interpreter was launched with the ``-I`` or ``-P`` flag, or when the ``PYTHONSAFEPATH`` environment variable was set. (#552) + + memray 1.11.0 (2023-12-04) -------------------------- diff --git a/news/525.bugfix.rst b/news/525.bugfix.rst deleted file mode 100644 index 8478a12ff0..0000000000 --- a/news/525.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix a bug that was causing ``dlopen`` to not load shared libraries that have an RPATH/RUNPATH set. diff --git a/news/538.feature.1.rst b/news/538.feature.1.rst deleted file mode 100644 index d65015a6a5..0000000000 --- a/news/538.feature.1.rst +++ /dev/null @@ -1 +0,0 @@ -Automatically use aggregated capture files for the :ref:`Jupyter magic ` whenever possible, reducing the amount of disk space needed for temporary files. diff --git a/news/538.feature.2.rst b/news/538.feature.2.rst deleted file mode 100644 index 462a02c33f..0000000000 --- a/news/538.feature.2.rst +++ /dev/null @@ -1 +0,0 @@ -Allow ``--temporal`` and ``--max-memory-records`` to be used with our :ref:`Jupyter magic `. diff --git a/news/544.bugfix.rst b/news/544.bugfix.rst deleted file mode 100644 index ec3d6c684e..0000000000 --- a/news/544.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix a bug where the tree reporter would fail to populate the code pane with relevant lines if the line where the allocation occurred was too near the start of the file. diff --git a/news/552.bugfix.rst b/news/552.bugfix.rst deleted file mode 100644 index 939ecb8bfe..0000000000 --- a/news/552.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix a bug causing the first entry of ``sys.path`` to be erroneously overwritten by ``memray run`` when the Python interpreter was launched with the ``-I`` or ``-P`` flag, or when the ``PYTHONSAFEPATH`` environment variable was set. diff --git a/news/560.feature.rst b/news/560.feature.rst deleted file mode 100644 index 7ce4615145..0000000000 --- a/news/560.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Expose the main thread id in the FileReader's metadata attribute. diff --git a/src/memray/_version.py b/src/memray/_version.py index f84c53b0ff..b518f6eed0 100644 --- a/src/memray/_version.py +++ b/src/memray/_version.py @@ -1 +1 @@ -__version__ = "1.11.0" +__version__ = "1.12.0"