diff --git a/CHANGELOG.md b/CHANGELOG.md index 116de24..badae2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.3.0](https://github.com/alexpovel/b4s/compare/v0.2.0...v0.3.0) (2023-06-11) + + +### Features + +* Eagerly implement common traits ([1ca60ca](https://github.com/alexpovel/b4s/commit/1ca60cade15042593c5e885fd3345d4a22eebbd7)) +* Introduce `SearchError` to have a proper `Error` ([d2d7da1](https://github.com/alexpovel/b4s/commit/d2d7da19739a0409b78609c442787d007729b391)) + ## 0.2.0 (2023-06-11) diff --git a/Cargo.lock b/Cargo.lock index 3beb186..77457ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -28,7 +28,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "b4s" -version = "0.2.0" +version = "0.3.0" dependencies = [ "ascii", "criterion", diff --git a/Cargo.toml b/Cargo.toml index e406d03..e569fd3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b4s" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.64.0" authors = ["Alex Povel "]