Skip to content

Commit

Permalink
Prepare for 1.11.0 release
Browse files Browse the repository at this point in the history
See changelog for more details.

Signed-off-by: Matt Wozniski <mwozniski@bloomberg.net>
  • Loading branch information
godlygeek committed Dec 4, 2023
1 parent 8e3b65c commit 51aa84e
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.10.0
current_version = 1.11.0
commit = True
message =
Prepare for {new_version} release
Expand Down
21 changes: 21 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,27 @@ Changelog

.. towncrier release notes start
memray 1.11.0 (2023-12-04)
--------------------------

Features
~~~~~~~~

- 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)
- 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)
- Where possible, leverage ``pkg-config`` when building the extension from source, picking up appropriate compiler and linker flags automatically. (#498)
- Port the tree reporter to be an interactive Textual App. (#499)


Bug Fixes
~~~~~~~~~

- Fixed a bug that caused ``memray attach`` to fail with newer LLDB versions, including on macOS Sonoma. (#490)
- Limit the number of memory records displayed in reporters by default. This will help displaying flamegraphs for long capture sessions. (#491)
- 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)
- Ensure that we update our terminal progress bars to 100% when processing finishes. (#494)


memray 1.10.0 (2023-10-05)
--------------------------

Expand Down
1 change: 0 additions & 1 deletion news/274.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/490.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/491.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/492.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/494.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/496.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/498.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/499.feature.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/memray/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.10.0"
__version__ = "1.11.0"

0 comments on commit 51aa84e

Please sign in to comment.