From d3fac1ad75be0d5c814a3b01fa35d0550bd6dda4 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Sun, 27 Feb 2022 14:13:12 +0000 Subject: [PATCH] Bump version to 0.15.0 --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 21efc76c..7806ddeb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "textwrap" -version = "0.14.2" +version = "0.15.0" authors = ["Martin Geisler "] description = "Powerful library for word wrapping, indenting, and dedenting strings" documentation = "https://docs.rs/textwrap/" diff --git a/README.md b/README.md index 808d8411..9eeea079 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ drawn on a [HTML5 canvas using WebAssembly][wasm-demo]. To use the textwrap crate, add this to your `Cargo.toml` file: ```toml [dependencies] -textwrap = "0.14" +textwrap = "0.15" ``` By default, this enables word wrapping with support for Unicode diff --git a/src/lib.rs b/src/lib.rs index e915df33..6d68309a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -189,7 +189,7 @@ //! [terminal_size]: https://docs.rs/terminal_size/ //! [hyphenation]: https://docs.rs/hyphenation/ -#![doc(html_root_url = "https://docs.rs/textwrap/0.14.2")] +#![doc(html_root_url = "https://docs.rs/textwrap/0.15.0")] #![forbid(unsafe_code)] // See https://github.com/mgeisler/textwrap/issues/210 #![deny(missing_docs)] #![deny(missing_debug_implementations)]