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 1
1
# Changelog
2
2
## [ Unreleased]
3
3
4
+ ## [ 0.1.5] - 2024-09-22
5
+
4
6
### Bug fixes
5
7
* Fix Undefined Behavior in WebAssembly SIMD128 (#86 ) (thanks @CryZe )
6
8
* Documentation and clippy fixes (thanks @rtfeldman , @jqnatividad , @rhysd )
70
72
## [ 0.0.1] - 2021-04-20
71
73
- Initial release.
72
74
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
74
77
[ 0.1.4 ] : https://github.com/rusticstuff/simdutf8/compare/v0.1.3...v0.1.4
75
78
[ 0.1.3 ] : https://github.com/rusticstuff/simdutf8/compare/v0.1.2...v0.1.3
76
79
[ 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 1
1
[package ]
2
2
name = " simdutf8"
3
- version = " 0.1.4 "
3
+ version = " 0.1.5 "
4
4
authors = [" Hans Kratz <hans@appfour.com>" ]
5
5
edition = " 2018"
6
6
description = " 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
29
29
Add the dependency to your Cargo.toml file:
30
30
``` toml
31
31
[dependencies ]
32
- simdutf8 = " 0.1.4 "
32
+ simdutf8 = " 0.1.5 "
33
33
```
34
34
35
35
Use ` simdutf8::basic::from_utf8() ` as a drop-in replacement for ` std::str::from_utf8() ` .
Original file line number Diff line number Diff line change 26
26
//! Add the dependency to your Cargo.toml file:
27
27
//! ```toml
28
28
//! [dependencies]
29
- //! simdutf8 = "0.1.4 "
29
+ //! simdutf8 = "0.1.5 "
30
30
//! ```
31
31
//!
32
32
//! 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