From f6e82f256c1d3fd8bdeca422faf8c1618b8f032e Mon Sep 17 00:00:00 2001 From: Jonathan Hedley Date: Wed, 27 Nov 2024 12:38:47 +1100 Subject: [PATCH] Note 1.18.2 release date --- CHANGES.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index b3c11ebf54..3233cbf89b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,12 +1,12 @@ # jsoup Changelog -## 1.18.2 (Pending) +## 1.18.2 (2024-Nov-27) ### Improvements * Optimized the throughput and memory use throughout the input read and parse flows, with heap allocations and GC down between -6% and -89%, and throughput improved up to +143% for small inputs. Most inputs sizes will see - throughput increases of ~ 20%. These performance improvements come through recycling the backing byte[] and char[] + throughput increases of ~ 20%. These performance improvements come through recycling the backing `byte[]` and `char[]` arrays used to read and parse the input. [2186](https://github.com/jhy/jsoup/pull/2186) * Speed optimized `html()` and `Entities.escape()` when the input contains UTF characters in a supplementary plane, by around 49%. [2183](https://github.com/jhy/jsoup/pull/2183)