Skip to content

Commit

Permalink
Merge pull request #104 from mgeisler/release-0.9.0
Browse files Browse the repository at this point in the history
Release 0.9.0
  • Loading branch information
mgeisler authored Oct 5, 2017
2 parents bce4e94 + 213170f commit e369622
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 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.8.0" # Remember to update html_root_url.
version = "0.9.0"
authors = ["Martin Geisler <[email protected]>"]
description = """
Textwrap is a small library for word wrapping, indenting, and
Expand Down
34 changes: 17 additions & 17 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.8"
textwrap = "0.9"
```

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.8", features = ["hyphenation"] }
textwrap = { version = "0.9", features = ["hyphenation"] }
```

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

```toml
[dependencies]
textwrap = { version = "0.8", features = ["term_size"] }
textwrap = { version = "0.9", 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.9.0 — October 5th, 2017

The dependency on `term_size` is now optional, and by default this
feature is not enabled. This is a *breaking change* for users of
Expand Down Expand Up @@ -307,17 +307,17 @@ Contributions will be accepted under the same license.
[py-textwrap]: https://docs.python.org/library/textwrap
[patterns]: https://github.com/tapeinosyne/hyphenation/tree/master/patterns-tex
[api-docs]: https://docs.rs/textwrap/
[issue-13]: ../../issues/13
[issue-14]: ../../issues/14
[issue-19]: ../../issues/19
[issue-25]: ../../issues/25
[issue-26]: ../../issues/26
[issue-28]: ../../issues/28
[issue-36]: ../../issues/36
[issue-39]: ../../issues/39
[issue-58]: ../../issues/58
[issue-59]: ../../issues/59
[issue-61]: ../../issues/61
[issue-81]: ../../issues/81
[issue-101]: ../../issues/101
[issue-13]: https://github.com/mgeisler/textwrap/issues/13
[issue-14]: https://github.com/mgeisler/textwrap/issues/14
[issue-19]: https://github.com/mgeisler/textwrap/issues/19
[issue-25]: https://github.com/mgeisler/textwrap/issues/25
[issue-26]: https://github.com/mgeisler/textwrap/issues/26
[issue-28]: https://github.com/mgeisler/textwrap/issues/28
[issue-36]: https://github.com/mgeisler/textwrap/issues/36
[issue-39]: https://github.com/mgeisler/textwrap/issues/39
[issue-58]: https://github.com/mgeisler/textwrap/issues/58
[issue-59]: https://github.com/mgeisler/textwrap/issues/59
[issue-61]: https://github.com/mgeisler/textwrap/issues/61
[issue-81]: https://github.com/mgeisler/textwrap/issues/81
[issue-101]: https://github.com/mgeisler/textwrap/issues/101
[mit]: LICENSE
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.8.0")]
#![doc(html_root_url = "https://docs.rs/textwrap/0.9.0")]
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]

Expand Down

0 comments on commit e369622

Please sign in to comment.