From 87ee8d9d20b849eae1974a82b248ee6fe7491bcc Mon Sep 17 00:00:00 2001 From: Hans Kratz Date: Sun, 22 Sep 2024 11:18:21 +0200 Subject: [PATCH] chore: Release simdutf8 version 0.1.5 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4527f46..e0ce8e1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## [Unreleased] +## [0.1.5] - 2024-09-22 + ### Bug fixes * Fix Undefined Behavior in WebAssembly SIMD128 (#86) (thanks @CryZe) * Documentation and clippy fixes (thanks @rtfeldman, @jqnatividad, @rhysd) @@ -70,7 +72,8 @@ ## [0.0.1] - 2021-04-20 - Initial release. -[Unreleased]: https://github.com/rusticstuff/simdutf8/compare/v0.1.4...HEAD +[Unreleased]: https://github.com/rusticstuff/simdutf8/compare/v0.1.5...HEAD +[0.1.5]: https://github.com/rusticstuff/simdutf8/compare/v0.1.4...v0.1.5 [0.1.4]: https://github.com/rusticstuff/simdutf8/compare/v0.1.3...v0.1.4 [0.1.3]: https://github.com/rusticstuff/simdutf8/compare/v0.1.2...v0.1.3 [0.1.2]: https://github.com/rusticstuff/simdutf8/compare/v0.1.1...v0.1.2 diff --git a/Cargo.toml b/Cargo.toml index dca2f8dd..dcf51728 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simdutf8" -version = "0.1.4" +version = "0.1.5" authors = ["Hans Kratz "] edition = "2018" description = "SIMD-accelerated UTF-8 validation." diff --git a/README.md b/README.md index 9e63fd3c..f8ccf828 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ This library has been thoroughly tested with sample data as well as fuzzing and Add the dependency to your Cargo.toml file: ```toml [dependencies] -simdutf8 = "0.1.4" +simdutf8 = "0.1.5" ``` Use `simdutf8::basic::from_utf8()` as a drop-in replacement for `std::str::from_utf8()`. diff --git a/src/lib.rs b/src/lib.rs index 80ea22d3..77fbc4fd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -26,7 +26,7 @@ //! Add the dependency to your Cargo.toml file: //! ```toml //! [dependencies] -//! simdutf8 = "0.1.4" +//! simdutf8 = "0.1.5" //! ``` //! //! Use [`basic::from_utf8()`] as a drop-in replacement for `std::str::from_utf8()`.