From 2706419db583f138e90cdc20cc4ea2b38beb2e87 Mon Sep 17 00:00:00 2001 From: Lukas Renggli Date: Sun, 18 Feb 2024 10:07:57 +0100 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 974ca45..83ab0f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.3.0 (unpublished) +- Dart 3.4 requirement. +- Make `IntegerRange` and `DoubleRange` const constructable. +- Numerous improvements to the Graph library: + - Add `Graph.where(edgePredicate)` for filtering by edge. + - Add Prim's minimum spanning tree. +- Simplify the `Interval` implementation to only support closed intervals. +- Add a `Fenwick` and `Interval` trees. + ## 4.2.0 - Improved `Iterable.index` to more common argument names, and support `step`. - Add `also` scope operator, which significantly improves the possibility to write one-liners.