From 174d7c31cabf369816d8658d277afc1143a13623 Mon Sep 17 00:00:00 2001 From: Christopher Berner Date: Fri, 16 Jun 2023 10:41:18 -0700 Subject: [PATCH] Update changelog --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ebdfc5e..ebc9b5a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # redb - Changelog +## 1.0.0 - 2023-06-16 +### Announcement +redb has reached its first stable release! The file format is now gauranteed to be backward compatible, +and the API is stable. I've run pretty extensive fuzz testing, but please report any bugs you encounter. + +The following features are complete: +* MVCC with a single `WriteTransaction` and multiple `ReadTransaction`s +* Zero-copy reads +* ACID semantics, including non-durable transactions which only sacrifice Durability +* Savepoints which allow the state of the database to be captured and restored later + +#### Changes from 0.22.0: +* Stabilize file format +* Improve performance of `restore_savepoint()` + ## 0.22.0 - 2023-06-12 * Fix panic while repairing a database file after crash * Fix rare panic in `restore_savepoint()`