Skip to content

Commit

Permalink
cargo: bump version to 0.11.0
Browse files Browse the repository at this point in the history
Fixes #151.
  • Loading branch information
mgeisler committed Dec 9, 2018
1 parent b93248b commit e1584b4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "textwrap"
version = "0.10.0"
version = "0.11.0"
authors = ["Martin Geisler <martin@geisler.net>"]
description = """
Textwrap is a small library for word wrapping, indenting, and
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -28,15 +28,15 @@ 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
`term_size` feature:

```toml
[dependencies]
textwrap = { version = "0.10", features = ["term_size"] }
textwrap = { version = "0.11", features = ["term_size"] }
```

## Documentation
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]

Expand Down

0 comments on commit e1584b4

Please sign in to comment.