Bump version (and update docs)

This commit is contained in:
Sujay Jayakar
2018-05-09 12:39:23 -07:00
parent 45364f03c2
commit 7389eb31f1
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
name = "unicode-normalization"
version = "0.1.6"
version = "0.1.7"
authors = ["kwantam <kwantam@gmail.com>"]
homepage = "https://github.com/unicode-rs/unicode-normalization"
+2 -2
View File
@@ -14,7 +14,7 @@ use unicode_normalization::UnicodeNormalization;
fn main() {
assert_eq!(compose('A','\u{30a}'), Some('Å'));
let s = "ÅΩ";
let c = s.nfc().collect::<String>();
assert_eq!(c, "ÅΩ");
@@ -28,5 +28,5 @@ to your `Cargo.toml`:
```toml
[dependencies]
unicode-normalization = "0.1.5"
unicode-normalization = "0.1.7"
```
+1 -1
View File
@@ -34,7 +34,7 @@
//!
//! ```toml
//! [dependencies]
//! unicode-normalization = "0.1.3"
//! unicode-normalization = "0.1.7"
//! ```
#![deny(missing_docs, unsafe_code)]