diff --git a/.changelog/v0.13.0/breaking-changes/155-remove-bolt-cleveldb.md b/.changelog/v0.13.0/breaking-changes/155-remove-bolt-cleveldb.md new file mode 100644 index 0000000..ccc16f2 --- /dev/null +++ b/.changelog/v0.13.0/breaking-changes/155-remove-bolt-cleveldb.md @@ -0,0 +1 @@ +- removed deprecated boltdb and cleveldb ([\#155](https://github.com/cometbft/cometbft-db/pull/155)) \ No newline at end of file diff --git a/.changelog/v0.13.0/summary.md b/.changelog/v0.13.0/summary.md index 3e860de..b8c3caa 100644 --- a/.changelog/v0.13.0/summary.md +++ b/.changelog/v0.13.0/summary.md @@ -1,7 +1,5 @@ - -This release changes the contract of the Iterator Key() and Value() APIs. -Namely, the caller is now responsible for creating a copy of their returned value if they want to modify it. +This release: +- changes the contract of the Iterator Key() and Value() APIs. Namely, the caller is now responsible for creating a copy of their returned value if they want to modify it. +- removes support for boltDB and clevelDB, which were marked as deprecated in release v0.12.0. \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 48ed3bd..334fc83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,13 +2,20 @@ ## v0.13.0 +*Aug 2, 2024* + This release: - changes the contract of the Iterator Key() and Value() APIs: the caller is now responsible for creating a copy of their returned value if they want to modify it. - bumps the Go version to 1.22.5 (from 1.22). Go 1.22.5 does not introduce new language features, therefore code using older version will still compile. However, we recommend to upgrade to the latest version(s) of Go as soon as possible. +- removes support for boltDB and clevelDB. + + +### BREAKING CHANGES +- removed deprecated boltdb and cleveldb ([\#155](https://github.com/cometbft/cometbft-db/pull/155)) ### FEATURES