Skip to content

Commit 87ee8d9

Browse files
committed
chore: Release simdutf8 version 0.1.5
1 parent 3f79711 commit 87ee8d9

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
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)
@@ -70,7 +72,8 @@
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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "simdutf8"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
authors = ["Hans Kratz <hans@appfour.com>"]
55
edition = "2018"
66
description = "SIMD-accelerated UTF-8 validation."

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This library has been thoroughly tested with sample data as well as fuzzing and
2929
Add the dependency to your Cargo.toml file:
3030
```toml
3131
[dependencies]
32-
simdutf8 = "0.1.4"
32+
simdutf8 = "0.1.5"
3333
```
3434

3535
Use `simdutf8::basic::from_utf8()` as a drop-in replacement for `std::str::from_utf8()`.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
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()`.

0 commit comments

Comments
 (0)