Skip to content

Commit 51aa84e

Browse files
committed
Prepare for 1.11.0 release
See changelog for more details. Signed-off-by: Matt Wozniski <[email protected]>
1 parent 8e3b65c commit 51aa84e

11 files changed

+23
-10
lines changed

.bumpversion.cfg

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

NEWS.rst

+21
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,27 @@ Changelog
88

99
.. towncrier release notes start
1010
11+
memray 1.11.0 (2023-12-04)
12+
--------------------------
13+
14+
Features
15+
~~~~~~~~
16+
17+
- Migrate the :doc:`live TUI <live>` to Textual. This provides a greatly improved user experience, including the ability to scroll to view rows that don't fit on the screen. (#274)
18+
- Add a new documentation page to serve as :ref:`an overview of memory concepts <memory overview>`, to help users better interpret the memory profiles provided by Memray. (#496)
19+
- Where possible, leverage ``pkg-config`` when building the extension from source, picking up appropriate compiler and linker flags automatically. (#498)
20+
- Port the tree reporter to be an interactive Textual App. (#499)
21+
22+
23+
Bug Fixes
24+
~~~~~~~~~
25+
26+
- Fixed a bug that caused ``memray attach`` to fail with newer LLDB versions, including on macOS Sonoma. (#490)
27+
- Limit the number of memory records displayed in reporters by default. This will help displaying flamegraphs for long capture sessions. (#491)
28+
- When generating a ``--leaks`` flamegraph, don't show a warning that the ``pymalloc`` allocator is in use if ``--trace-python-allocators`` was used when generating the capture file. (#492)
29+
- Ensure that we update our terminal progress bars to 100% when processing finishes. (#494)
30+
31+
1132
memray 1.10.0 (2023-10-05)
1233
--------------------------
1334

news/274.feature.rst

-1
This file was deleted.

news/490.bugfix.rst

-1
This file was deleted.

news/491.bugfix.rst

-1
This file was deleted.

news/492.bugfix.rst

-1
This file was deleted.

news/494.bugfix.rst

-1
This file was deleted.

news/496.feature.rst

-1
This file was deleted.

news/498.feature.rst

-1
This file was deleted.

news/499.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.10.0"
1+
__version__ = "1.11.0"

0 commit comments

Comments
 (0)