diff --git a/Cargo.toml b/Cargo.toml index 10183e92..9d82ca58 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "textwrap" -version = "0.10.0" +version = "0.11.0" authors = ["Martin Geisler "] description = """ Textwrap is a small library for word wrapping, indenting, and diff --git a/README.md b/README.md index b3541bc1..23a54390 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ the [Python textwrap module][py-textwrap]. Add this to your `Cargo.toml`: ```toml [dependencies] -textwrap = "0.10" +textwrap = "0.11" ``` and this to your crate root: @@ -28,7 +28,7 @@ If you would like to have automatic hyphenation, specify the dependency as: ```toml [dependencies] -textwrap = { version = "0.10", features = ["hyphenation"] } +textwrap = { version = "0.11", features = ["hyphenation"] } ``` To conveniently wrap text at the current terminal width, enable the @@ -36,7 +36,7 @@ To conveniently wrap text at the current terminal width, enable the ```toml [dependencies] -textwrap = { version = "0.10", features = ["term_size"] } +textwrap = { version = "0.11", features = ["term_size"] } ``` ## Documentation @@ -182,7 +182,7 @@ cost abstractions. This section lists the largest changes per release. -### Unreleased +### Version 0.11.0 — December 9th, 2018 Due to our dependencies bumping their minimum supported version of Rust, the minimum version of Rust we test against is now 1.22.0. diff --git a/src/lib.rs b/src/lib.rs index cc25e73f..2f82325f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -41,7 +41,7 @@ //! //! [unicode-width]: https://docs.rs/unicode-width/ -#![doc(html_root_url = "https://docs.rs/textwrap/0.10.0")] +#![doc(html_root_url = "https://docs.rs/textwrap/0.11.0")] #![deny(missing_docs)] #![deny(missing_debug_implementations)]