diff --git a/CHANGELOG.md b/CHANGELOG.md index fdf44e1..f5da885 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - `BlockEntry`, `KeyValue`, `Node` and `Child` are now private +- You can now no longer manually construct `Traverse` or `Prefixed` structs ## [0.2.2] - 2024-02-23 diff --git a/src/error.rs b/src/error.rs index 7dc99aa..7308ebd 100644 --- a/src/error.rs +++ b/src/error.rs @@ -9,6 +9,7 @@ use crate::{ tree::TreeBuilderError, }; +/// Error type used by all [`Result`]s in this library. #[derive(Error, Debug)] pub enum HyperbeeError { #[error("There was an error in the underlying Hypercore")]