diff --git a/Cargo.toml b/Cargo.toml index 6fbd549..9aef9c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "unicode-segmentation" -version = "1.2.1" +version = "1.3.0" authors = ["kwantam "] homepage = "https://github.com/unicode-rs/unicode-segmentation" diff --git a/README.md b/README.md index cb0f331..7033f22 100644 --- a/README.md +++ b/README.md @@ -40,11 +40,16 @@ to your `Cargo.toml`: ```toml [dependencies] -unicode-segmentation = "1.2.1" +unicode-segmentation = "1.3.0" ``` # Change Log +## 1.3.0 + +* [#24](https://github.com/unicode-rs/unicode-segmentation/pull/24) Add support for sentence boundaries +* [#44](https://github.com/unicode-rs/unicode-segmentation/pull/44) Treat `gc=No` as a subset of `gc=N` + ## 1.2.1 * [#37](https://github.com/unicode-rs/unicode-segmentation/pull/37): diff --git a/src/lib.rs b/src/lib.rs index 91fee0a..78a0b6f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -46,7 +46,7 @@ //! //! ```toml //! [dependencies] -//! unicode-segmentation = "1.2.1" +//! unicode-segmentation = "1.3.0" //! ``` #![deny(missing_docs, unsafe_code)]