Skip to content

Commit e75462b

Browse files
committed
Prepare for 1.12.0 release
See changelog for more details. Signed-off-by: Pablo Galindo <pablogsal@gmail.com>
1 parent 27ceef3 commit e75462b

9 files changed

+21
-8
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.11.0
2+
current_version = 1.12.0
33
commit = True
44
message =
55
Prepare for {new_version} release

NEWS.rst

+19
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,25 @@ Changelog
88

99
.. towncrier release notes start
1010
11+
memray 1.12.0 (2024-03-07)
12+
--------------------------
13+
14+
Features
15+
~~~~~~~~
16+
17+
- Allow ``--temporal`` and ``--max-memory-records`` to be used with our :ref:`Jupyter magic <Jupyter integration>`. (#538)
18+
- Automatically use aggregated capture files for the :ref:`Jupyter magic <Jupyter integration>` whenever possible, reducing the amount of disk space needed for temporary files. (#538)
19+
- Expose the main thread id in the FileReader's metadata attribute. (#560)
20+
21+
22+
Bug Fixes
23+
~~~~~~~~~
24+
25+
- Fix a bug that was causing ``dlopen`` to not load shared libraries that have an RPATH/RUNPATH set. (#525)
26+
- 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)
27+
- 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)
28+
29+
1130
memray 1.11.0 (2023-12-04)
1231
--------------------------
1332

news/525.bugfix.rst

-1
This file was deleted.

news/538.feature.1.rst

-1
This file was deleted.

news/538.feature.2.rst

-1
This file was deleted.

news/544.bugfix.rst

-1
This file was deleted.

news/552.bugfix.rst

-1
This file was deleted.

news/560.feature.rst

-1
This file was deleted.

src/memray/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.11.0"
1+
__version__ = "1.12.0"

0 commit comments

Comments
 (0)