File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed
Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 11# Changelog
22## [ Unreleased]
33
4+ ## [ 0.1.4] - 2022-04-02
5+
46### New features
57* WASM (wasm32) support
68
6163## [ 0.0.1] - 2021-04-20
6264- Initial release.
6365
64- [ Unreleased ] : https://github.com/rusticstuff/simdutf8/compare/v0.1.3...HEAD
66+ [ Unreleased ] : https://github.com/rusticstuff/simdutf8/compare/v0.1.4...HEAD
67+ [ 0.1.4 ] : https://github.com/rusticstuff/simdutf8/compare/v0.1.3...v0.1.4
6568[ 0.1.3 ] : https://github.com/rusticstuff/simdutf8/compare/v0.1.2...v0.1.3
6669[ 0.1.2 ] : https://github.com/rusticstuff/simdutf8/compare/v0.1.1...v0.1.2
6770[ 0.1.1 ] : https://github.com/rusticstuff/simdutf8/compare/v0.1.0...v0.1.1
Original file line number Diff line number Diff line change 11[package ]
22name = " simdutf8"
3- version = " 0.1.3 "
3+ version = " 0.1.4 "
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,12 +29,12 @@ 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.3 "
32+ simdutf8 = " 0.1.4 "
3333```
3434For ARM64 SIMD support on Rust 1.59:
3535``` toml
3636[dependencies ]
37- simdutf8 = { version = " 0.1.3 " , features = [" aarch64_neon" ] }
37+ simdutf8 = { version = " 0.1.4 " , features = [" aarch64_neon" ] }
3838```
3939
4040Use ` simdutf8::basic::from_utf8() ` as a drop-in replacement for ` std::str::from_utf8() ` .
Original file line number Diff line number Diff line change 2222//! Add the dependency to your Cargo.toml file:
2323//! ```toml
2424//! [dependencies]
25- //! simdutf8 = "0.1.3 "
25+ //! simdutf8 = "0.1.4 "
2626//! ```
2727//! For ARM64 SIMD support on Rust 1.59:
2828//! ```toml
2929//! [dependencies]
30- //! simdutf8 = { version = "0.1.3 ", features = ["aarch64_neon"] }
30+ //! simdutf8 = { version = "0.1.4 ", features = ["aarch64_neon"] }
3131//! ```
3232//!
3333//! 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