diff --git a/Cargo.toml b/Cargo.toml index c793674..8e5b0b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "os_str_bytes" -version = "0.1.3" +version = "0.2.0" authors = ["dylni"] edition = "2018" exclude = [".*"] diff --git a/README.md b/README.md index e9219ed..30554d1 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Add the following lines to your "Cargo.toml" file: ```toml [dependencies] -os_str_bytes = "0.1" +os_str_bytes = "0.2" ``` See the [documentation] for available functionality and examples. diff --git a/src/lib.rs b/src/lib.rs index c392d96..a882d1a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -77,7 +77,7 @@ //! [`str::from_utf8_unchecked`]: https://doc.rust-lang.org/std/str/fn.from_utf8_unchecked.html //! [`Vec`]: https://doc.rust-lang.org/std/vec/struct.Vec.html -#![doc(html_root_url = "https://docs.rs/os_str_bytes/0.1.3")] +#![doc(html_root_url = "https://docs.rs/os_str_bytes/0.2.0")] use std::borrow::Cow; use std::error::Error;