Skip to content

Commit

Permalink
Merge pull request #133 from mgeisler/release-0.10.0
Browse files Browse the repository at this point in the history
Release 0.10.0
  • Loading branch information
mgeisler authored Apr 28, 2018
2 parents ad41379 + a743ac9 commit c71199f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 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.9.0"
version = "0.10.0"
authors = ["Martin Geisler <[email protected]>"]
description = """
Textwrap is a small library for word wrapping, indenting, and
Expand Down
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ the [Python textwrap module][py-textwrap].
Add this to your `Cargo.toml`:
```toml
[dependencies]
textwrap = "0.9"
textwrap = "0.10"
```

and this to your crate root:
Expand All @@ -27,15 +27,15 @@ If you would like to have automatic hyphenation, specify the
dependency as:
```toml
[dependencies]
textwrap = { version = "0.9", features = ["hyphenation"] }
textwrap = { version = "0.10", features = ["hyphenation"] }
```

To conveniently wrap text at the current terminal width, enable the
`term_size` feature:

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

## Documentation
Expand Down Expand Up @@ -181,7 +181,7 @@ cost abstractions.

This section lists the largest changes per release.

### Unreleased
### Version 0.10.0 — April 28th, 2018

Due to our dependencies bumping their minimum supported version of
Rust, the minimum version of Rust we test against is now 1.17.0.
Expand All @@ -206,8 +206,7 @@ Added a regression test for the case where `width` is set to

Issues closed:

* Fixed [#101][issue-101]: Remove `term_size` as a (hard required)
dependency.
* Fixed [#101][issue-101]: Make `term_size` an optional dependency.

### Version 0.8.0 — September 4th, 2017

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.9.0")]
#![doc(html_root_url = "https://docs.rs/textwrap/0.10.0")]
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]

Expand Down

0 comments on commit c71199f

Please sign in to comment.