From fcb047a23d1b76892c002d1034d9e8c6afcd4057 Mon Sep 17 00:00:00 2001 From: Carl Gay Date: Wed, 18 Dec 2024 13:18:09 -0500 Subject: [PATCH] doc: add release notes for string literal and collectors fixes --- documentation/source/release-notes/2024.2.rst | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/documentation/source/release-notes/2024.2.rst b/documentation/source/release-notes/2024.2.rst index c6043de73..1e1f5fc60 100644 --- a/documentation/source/release-notes/2024.2.rst +++ b/documentation/source/release-notes/2024.2.rst @@ -26,7 +26,7 @@ Compiler * The build rules for unified executables now properly depend on copying included run-time libraries such as libunwind. -* Optimizations that allow the type of ``if`` expressions to be more +* Optimizations that allow the type of :drm:`if` expressions to be more accurately estimated have been improved. For example, in this function: @@ -42,6 +42,9 @@ Compiler * `Issue 1523 `_, which could result in a compiler abort during code generation, has been fixed. +* A `serious bug `_ in the parsing + of multi-line string literals has been fixed. + Tools ===== @@ -63,6 +66,14 @@ Tools Library Updates =============== +collections +----------- + +The ``collectors`` module is now `fully documented +`_, the API has been +made more consistent, and a bug in :drm:`` collectors has been fixed. See `the pull +request `_ for details. + Dylan -----