Skip to content

Commit 4694e17

Browse files
committed
Prepare for 1.13.0 release
See changelog for more details. Signed-off-by: Matt Wozniski <[email protected]>
1 parent b7c1547 commit 4694e17

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.12.0
2+
current_version = 1.13.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.13.0 (2024-06-18)
12+
--------------------------
13+
14+
Features
15+
~~~~~~~~
16+
17+
- Include the thread name in the live TUI (#562)
18+
- Capture the name attribute of Python `threading.Thread` objects. (#562)
19+
- Allow using Ctrl+Z to suspend ``memray tree`` and the live mode TUI. (#581)
20+
- Add a button in the live-mode TUI to show allocations from all threads at once. (#589)
21+
22+
23+
Bug Fixes
24+
~~~~~~~~~
25+
26+
- Fix dynamic toggling between descriptions like "Pause" vs "Unpause" or "Show" vs "Hide" in the footer of the live-mode TUI and tree reporter. This was broken by changes introduced in Textual 0.61 (and again by Textual 0.63). (#597)
27+
- Correctly localize the start and end time in the "Stats" modal when an HTML report was generated on a different machine than the one it is being displayed on. (#611)
28+
- Fix a crash in old macOS versions (<11.0) due to the inavailability of some linker cache APIs. (#615)
29+
- Fix reporting of "Own Memory" in the ``live`` and ``summary`` reporters. A bug in our summation caused us to undercount functions' direct allocations. (#617)
30+
31+
1132
memray 1.12.0 (2024-03-07)
1233
--------------------------
1334

news/562.feature.2.rst

-1
This file was deleted.

news/562.feature.rst

-1
This file was deleted.

news/581.feature.rst

-1
This file was deleted.

news/589.feature.rst

-1
This file was deleted.

news/597.bugfix.rst

-1
This file was deleted.

news/611.bugfix.rst

-1
This file was deleted.

news/615.bugfix.rst

-1
This file was deleted.

news/617.bugfix.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.12.0"
1+
__version__ = "1.13.0"

0 commit comments

Comments
 (0)