File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed
Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22## [ Unreleased]
33
4+ ## [ 0.1.5] - 2024-09-22
5+
46### Bug fixes
57* Fix Undefined Behavior in WebAssembly SIMD128 (#86 ) (thanks @CryZe )
68* Documentation and clippy fixes (thanks @rtfeldman , @jqnatividad , @rhysd )
7072## [ 0.0.1] - 2021-04-20
7173- Initial release.
7274
73- [ Unreleased ] : https://github.com/rusticstuff/simdutf8/compare/v0.1.4...HEAD
75+ [ Unreleased ] : https://github.com/rusticstuff/simdutf8/compare/v0.1.5...HEAD
76+ [ 0.1.5 ] : https://github.com/rusticstuff/simdutf8/compare/v0.1.4...v0.1.5
7477[ 0.1.4 ] : https://github.com/rusticstuff/simdutf8/compare/v0.1.3...v0.1.4
7578[ 0.1.3 ] : https://github.com/rusticstuff/simdutf8/compare/v0.1.2...v0.1.3
7679[ 0.1.2 ] : https://github.com/rusticstuff/simdutf8/compare/v0.1.1...v0.1.2
Original file line number Diff line number Diff line change 11[package ]
22name = " simdutf8"
3- version = " 0.1.4 "
3+ version = " 0.1.5 "
44authors = [" Hans Kratz <hans@appfour.com>" ]
55edition = " 2018"
66description = " SIMD-accelerated UTF-8 validation."
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ This library has been thoroughly tested with sample data as well as fuzzing and
2929Add the dependency to your Cargo.toml file:
3030``` toml
3131[dependencies ]
32- simdutf8 = " 0.1.4 "
32+ simdutf8 = " 0.1.5 "
3333```
3434
3535Use ` simdutf8::basic::from_utf8() ` as a drop-in replacement for ` std::str::from_utf8() ` .
Original file line number Diff line number Diff line change 2626//! Add the dependency to your Cargo.toml file:
2727//! ```toml
2828//! [dependencies]
29- //! simdutf8 = "0.1.4 "
29+ //! simdutf8 = "0.1.5 "
3030//! ```
3131//!
3232//! Use [`basic::from_utf8()`] as a drop-in replacement for `std::str::from_utf8()`.
You can’t perform that action at this time.
0 commit comments