Skip to content

Commit

Permalink
chore: Release simdutf8 version 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hkratz committed Sep 22, 2024
1 parent 3f79711 commit 87ee8d9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simdutf8"
version = "0.1.4"
version = "0.1.5"
authors = ["Hans Kratz <hans@appfour.com>"]
edition = "2018"
description = "SIMD-accelerated UTF-8 validation."
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()`.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()`.
Expand Down

0 comments on commit 87ee8d9

Please sign in to comment.