From 221df4fca01c2f0ed27954c1ff0f573400f1c352 Mon Sep 17 00:00:00 2001 From: roseduan Date: Fri, 18 Aug 2023 18:05:44 +0800 Subject: [PATCH] add changelog for v2.3.0 --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3f3359f..5b781749 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# Release 2.3.0(2023-08-18) +## 🚀 New Features +* use BTree as the default memory data structure. + * the old Radix will be removed, and the iterator too. + +## 🎠 Community +* Thanks to @Jeremy-Run + * remove merge file after tests (https://github.com/rosedblabs/rosedb/pull/250) + * replace original file and rebuilt index after merge (https://github.com/rosedblabs/rosedb/pull/255) +* Thanks to @SYaoJun + * fix: single quote error in README (https://github.com/rosedblabs/rosedb/pull/256) +* Thanks to @weijiew + * add btree Ascend、Descend method and unitest. (https://github.com/rosedblabs/rosedb/pull/257) + # Release 2.2.2(2023-08-05) ## 🚀 New Features * Watch Key [feature support watch event by key #227](https://github.com/rosedblabs/rosedb/issues/227) @Jeremy-Run