From 4c458e57ecbe0edccdb2ecf1e805de32febf299b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 2 Aug 2023 20:01:57 +0000 Subject: [PATCH] chore(main): release 0.3.2 --- CHANGELOG.md | 7 +++++++ Cargo.lock | 4 ++-- Cargo.toml | 2 +- fuzz/Cargo.toml | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68355d1..36e1a71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.2](https://github.com/alexpovel/b4s/compare/v0.3.1...v0.3.2) (2023-08-02) + + +### Bug Fixes + +* **docs:** Add linear search to benchmarks and docs ([9e2f11c](https://github.com/alexpovel/b4s/commit/9e2f11c39342f1ea3460dda810a92b225ee9d4b8)), closes [#10](https://github.com/alexpovel/b4s/issues/10) + ## [0.3.1](https://github.com/alexpovel/b4s/compare/v0.3.0...v0.3.1) (2023-07-31) diff --git a/Cargo.lock b/Cargo.lock index 1d89332..c5805e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ dependencies = [ [[package]] name = "afl-target" -version = "0.3.1" +version = "0.3.2" dependencies = [ "afl", "arbitrary", @@ -113,7 +113,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "b4s" -version = "0.3.1" +version = "0.3.2" dependencies = [ "ascii", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 5485009..66feb31 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b4s" -version = "0.3.1" +version = "0.3.2" edition.workspace = true rust-version = "1.64.0" authors = ["Alex Povel "] diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index c5e404e..72ff3f9 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "afl-target" -version = "0.3.1" +version = "0.3.2" edition.workspace = true publish = false