From 4d10a451217d00daab832b68c8ac4c1ff25fcded Mon Sep 17 00:00:00 2001 From: roseduan Date: Thu, 15 Jun 2023 22:03:26 +0800 Subject: [PATCH] prepare for release 2.1.0 --- CHANGELOG.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf337e93..290574d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,26 @@ +# Release 2.1.0(2023-06-15) + +## 🚀 New Features + +* Support iterator in rosedb, it can traverse the data in database in order. + And the methods are as follows: + + * Rewind + * Seek + * Next + * Key + * Value + * Close + +And the prefix scan is also supported. + +## 🐞Bug Fix + +* Thanks to @rfyiamcool for PR + * [#216](https://github.com/rosedblabs/rosedb/pull/216) fix: update committed flag after batch commit + # Release 2.0.0(2023-06-13) + ## 🚀 New Features * Basic operations, `Put/Get/Delete/Exist` key value pairs. * Batch operations, `Put/Get/Delete/Exist` key value pairs, and `Commit`.