Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 1.14.0 release #677

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.13.4
current_version = 1.14.0
commit = True
message =
Prepare for {new_version} release
Expand Down
19 changes: 19 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,25 @@ Changelog

.. towncrier release notes start

memray 1.14.0 (2024-09-09)
--------------------------

Features
~~~~~~~~

- Wheels are now published for Python 3.13, though we don't yet support free-threaded (no GIL) builds. (#658)


Bug Fixes
~~~~~~~~~

- Fix a lock ordering deadlock in libc between a Memray lock and a lock internal to dlopen. (#549)
- Ensure flame graphs stay in flame mode when the user has selected it.
Previously clicking the "Hide Irrelevant Frames" or "Hide Import System Frames"
checkboxes would switch the flame graph back to icicle mode. (#656)
- Fix a race condition that was able to cause strange exception messages if two different threads tried to initialize Memray tracking at once. (#667)


memray 1.13.4 (2024-07-18)
--------------------------

Expand Down
1 change: 0 additions & 1 deletion news/549.bugfix.rst

This file was deleted.

3 changes: 0 additions & 3 deletions news/656.bugfix.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion news/667.bugfix.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.13.4"
__version__ = "1.14.0"
Loading