Skip to content

Commit c2c8d53

Browse files
authored
Prepare 1.8.0 release (#393)
1 parent 327b82a commit c2c8d53

10 files changed

+25
-10
lines changed

.bumpversion.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[bumpversion]
2-
current_version = 1.7.0
2+
current_version = 1.8.0
33
commit = True
4-
message =
4+
message =
55
Prepare for {new_version} release
6-
6+
77
See changelog for more details.
88

99
[bumpversion:file:src/memray/_version.py]

.pre-commit-config.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ repos:
1818
- id: end-of-file-fixer
1919
stages: [pre-commit]
2020
- id: trailing-whitespace
21+
exclude: "^[.]bumpversion[.]cfg"
2122
stages: [pre-commit]
2223

2324
- repo: https://github.com/pre-commit/pygrep-hooks

NEWS.rst

+20
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,26 @@ Changelog
88

99
.. towncrier release notes start
1010
11+
memray 1.8.0 (2023-06-09)
12+
-------------------------
13+
14+
Features
15+
~~~~~~~~
16+
17+
- Allow ``memray stats`` to output a JSON report via ``--json`` flag. (#377)
18+
- We now publish x86-64 musllinux_1_1 wheels, compatible with Alpine Linux. (#379)
19+
- We now support :ref:`temporal flame graphs`, which provide an exciting new way of analyzing your process's memory usage over time. (#391)
20+
21+
22+
Bug Fixes
23+
~~~~~~~~~
24+
25+
- Fix a bug where a non-import call on the same line as an ``import`` statement would be hidden by the "Hide Import System Frames" checkbox of a flame graph. (#329)
26+
- Fixed a bug that was hitting an assert when constructing hybrid stack frames in Python 3.11 when no eval symbols are available. (#334)
27+
- Change the font color used by the ``%%memray_flamegraph`` Jupyter magic's progress updates for better contrast on the JupyterLab dark theme. (#344)
28+
- Fix a bug that could result in a deadlock when tracking a process linked against an old version of musl libc. (#379)
29+
30+
1131
memray 1.7.0 (2023-02-21)
1232
-------------------------
1333

news/329.bugfix.rst

-1
This file was deleted.

news/334.bugfix.rst

-1
This file was deleted.

news/344.bugfix.rst

-1
This file was deleted.

news/377.feature.rst

-1
This file was deleted.

news/379.feature.rst

-1
This file was deleted.

news/391.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.7.0"
1+
__version__ = "1.8.0"

0 commit comments

Comments
 (0)