diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3530036f6e..b7cc756ee2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.14.0 +current_version = 1.15.0 commit = True message = Prepare for {new_version} release diff --git a/NEWS.rst b/NEWS.rst index e733ba3890..8ed389eb36 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -8,6 +8,17 @@ Changelog .. towncrier release notes start +memray 1.15.0 (2024-12-03) +-------------------------- + +Bug Fixes +~~~~~~~~~ + +- Fix some crashes caused by interposing symbols in memray itself (#685) +- Fixed a bug that was causing tracking of runtime libraries that are part of the linker cache not work in macOS 15. (#693) +- Fix a crash when a greenlet switch happens after Memray's profile function has been deactivated or replaced. (#700) + + memray 1.14.0 (2024-09-09) -------------------------- diff --git a/news/685.bugfix.rst b/news/685.bugfix.rst deleted file mode 100644 index 057c58427d..0000000000 --- a/news/685.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix some crashes caused by interposing symbols in memray itself diff --git a/news/693.bugfix.rst b/news/693.bugfix.rst deleted file mode 100644 index 2957757b92..0000000000 --- a/news/693.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug that was causing tracking of runtime libraries that are part of the linker cache not work in macOS 15. diff --git a/news/700.bugfix.rst b/news/700.bugfix.rst deleted file mode 100644 index cb6f2eb358..0000000000 --- a/news/700.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix a crash when a greenlet switch happens after Memray's profile function has been deactivated or replaced. diff --git a/src/memray/_version.py b/src/memray/_version.py index b9f68edb2f..6b0872cb2f 100644 --- a/src/memray/_version.py +++ b/src/memray/_version.py @@ -1 +1 @@ -__version__ = "1.14.0" +__version__ = "1.15.0"