diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 83a39e2358..cf46c38902 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.13.2 +current_version = 1.13.3 commit = True message = Prepare for {new_version} release diff --git a/NEWS.rst b/NEWS.rst index 72d119d1f2..7cd1a0d76f 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -8,6 +8,15 @@ Changelog .. towncrier release notes start +memray 1.13.3 (2024-07-02) +-------------------------- + +Bug Fixes +~~~~~~~~~ + +- Fix a bug that could result in truncated reports for applications that fork without calling :c:func:`PyOS_BeforeFork`, including by using `multiprocessing` with the "spawn" start method (the default on macOS). (#644) + + memray 1.13.2 (2024-06-27) -------------------------- diff --git a/news/644.bugfix.rst b/news/644.bugfix.rst deleted file mode 100644 index e3a88bd90a..0000000000 --- a/news/644.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix a bug that could result in truncated reports for applications that fork without calling :c:func:`PyOS_BeforeFork`, including by using `multiprocessing` with the "spawn" start method (the default on macOS). diff --git a/src/memray/_version.py b/src/memray/_version.py index 8d7257c473..f77d042a57 100644 --- a/src/memray/_version.py +++ b/src/memray/_version.py @@ -1 +1 @@ -__version__ = "1.13.2" +__version__ = "1.13.3"