From 21c70acf6a04f1dcd2f0d83747a1815c658ac11f Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Wed, 7 Feb 2024 21:43:10 +0800 Subject: [PATCH] update changelog (#132) --- .../breaking-changes/111-compaction-support.md | 0 .../features/111-compaction-support.md | 0 .changelog/v0.11.0/summary.md | 4 ++++ CHANGELOG.md | 15 +++++++++++++++ 4 files changed, 19 insertions(+) rename .changelog/{unreleased => v0.11.0}/breaking-changes/111-compaction-support.md (100%) rename .changelog/{unreleased => v0.11.0}/features/111-compaction-support.md (100%) create mode 100644 .changelog/v0.11.0/summary.md diff --git a/.changelog/unreleased/breaking-changes/111-compaction-support.md b/.changelog/v0.11.0/breaking-changes/111-compaction-support.md similarity index 100% rename from .changelog/unreleased/breaking-changes/111-compaction-support.md rename to .changelog/v0.11.0/breaking-changes/111-compaction-support.md diff --git a/.changelog/unreleased/features/111-compaction-support.md b/.changelog/v0.11.0/features/111-compaction-support.md similarity index 100% rename from .changelog/unreleased/features/111-compaction-support.md rename to .changelog/v0.11.0/features/111-compaction-support.md diff --git a/.changelog/v0.11.0/summary.md b/.changelog/v0.11.0/summary.md new file mode 100644 index 0000000..1ef6f89 --- /dev/null +++ b/.changelog/v0.11.0/summary.md @@ -0,0 +1,4 @@ +*Feb 7, 2024* + +This release adds support for explicit compaction. Please note that badger and +bolt do not support this. diff --git a/CHANGELOG.md b/CHANGELOG.md index 41733e5..7dc2c2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # CHANGELOG +## v0.11.0 + +*Feb 7, 2024* + +This release adds support for explicit compaction. Please note that badger and +bolt do not support this. + +### BREAKING CHANGES + +- Expanded db interface to support compaction ([\#111](https://github.com/cometbft/cometbft-db/pull/111)) + +### FEATURES + +- Add compaction support to the databases ([\#111](https://github.com/cometbft/cometbft-db/pull/111)) + ## v0.10.0 *Jan 26, 2024*