Skip to content

Commit

Permalink
(cargo-release) version 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
hkratz committed Apr 2, 2022
1 parent 79a7a07 commit 25131dd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 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.4] - 2022-04-02

### New features
* WASM (wasm32) support

Expand Down Expand Up @@ -61,7 +63,8 @@
## [0.0.1] - 2021-04-20
- Initial release.

[Unreleased]: https://github.com/rusticstuff/simdutf8/compare/v0.1.3...HEAD
[Unreleased]: https://github.com/rusticstuff/simdutf8/compare/v0.1.4...HEAD
[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
[0.1.1]: https://github.com/rusticstuff/simdutf8/compare/v0.1.0...v0.1.1
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.3"
version = "0.1.4"
authors = ["Hans Kratz <hans@appfour.com>"]
edition = "2018"
description = "SIMD-accelerated UTF-8 validation."
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ 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.3"
simdutf8 = "0.1.4"
```
For ARM64 SIMD support on Rust 1.59:
```toml
[dependencies]
simdutf8 = { version = "0.1.3", features = ["aarch64_neon"] }
simdutf8 = { version = "0.1.4", features = ["aarch64_neon"] }
```

Use `simdutf8::basic::from_utf8()` as a drop-in replacement for `std::str::from_utf8()`.
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
//! Add the dependency to your Cargo.toml file:
//! ```toml
//! [dependencies]
//! simdutf8 = "0.1.3"
//! simdutf8 = "0.1.4"
//! ```
//! For ARM64 SIMD support on Rust 1.59:
//! ```toml
//! [dependencies]
//! simdutf8 = { version = "0.1.3", features = ["aarch64_neon"] }
//! simdutf8 = { version = "0.1.4", features = ["aarch64_neon"] }
//! ```
//!
//! Use [`basic::from_utf8()`] as a drop-in replacement for `std::str::from_utf8()`.
Expand Down

0 comments on commit 25131dd

Please sign in to comment.