Skip to content

Commit

Permalink
Bump version to 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeisler committed Feb 27, 2022
1 parent 9cc554e commit 3042ff4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions CHANGELOG.md
Expand Up @@ -32,16 +32,15 @@ This is a major feature release with two main changes:
> = Options::new(80);
```

is now simply
if types are fully written out, is now simply

```rust
let options: Options<'_> = Options::new(80);
```

The anonymous lifetime represent the lifetime of the
`initial_indent` and `subsequent_indent` strings.

The change is nearly performance neutral (a 1-2% regression).
`initial_indent` and `subsequent_indent` strings. The change is
nearly performance neutral (a 1-2% regression).

Smaller improvements and changes:

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "textwrap"
version = "0.14.2"
version = "0.15.0"
authors = ["Martin Geisler <martin@geisler.net>"]
description = "Powerful library for word wrapping, indenting, and dedenting strings"
documentation = "https://docs.rs/textwrap/"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -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)]
Expand Down

0 comments on commit 3042ff4

Please sign in to comment.