diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cf46c38902..1cfcf7dbbe 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.13.3 +current_version = 1.13.4 commit = True message = Prepare for {new_version} release diff --git a/NEWS.rst b/NEWS.rst index 7cd1a0d76f..6e3c587c64 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -8,6 +8,15 @@ Changelog .. towncrier release notes start +memray 1.13.4 (2024-07-18) +-------------------------- + +Bug Fixes +~~~~~~~~~ + +- A backwards-incompatible change released in Textual 0.73 caused the ``memray tree`` reporter to start with no nodes expanded. This release adds a workaround to restore the old behavior of expanding the first child of each node. (#648) + + memray 1.13.3 (2024-07-02) -------------------------- diff --git a/news/648.bugfix.rst b/news/648.bugfix.rst deleted file mode 100644 index f8471e7c95..0000000000 --- a/news/648.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -A backwards-incompatible change released in Textual 0.73 caused the ``memray tree`` reporter to start with no nodes expanded. This release adds a workaround to restore the old behavior of expanding the first child of each node. diff --git a/src/memray/_version.py b/src/memray/_version.py index f77d042a57..f7d8b107f3 100644 --- a/src/memray/_version.py +++ b/src/memray/_version.py @@ -1 +1 @@ -__version__ = "1.13.3" +__version__ = "1.13.4"