Skip to content

Commit 25131dd

Browse files
committed
(cargo-release) version 0.1.4
1 parent 79a7a07 commit 25131dd

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
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.4] - 2022-04-02
5+
46
### New features
57
* WASM (wasm32) support
68

@@ -61,7 +63,8 @@
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

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.3"
3+
version = "0.1.4"
44
authors = ["Hans Kratz <hans@appfour.com>"]
55
edition = "2018"
66
description = "SIMD-accelerated UTF-8 validation."

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ 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.3"
32+
simdutf8 = "0.1.4"
3333
```
3434
For 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

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

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
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()`.

0 commit comments

Comments
 (0)