Skip to content

Commit c0a0db1

Browse files
authored
Merge pull request #298 from mgeisler/release-0.13.4
Release 0.13.4
2 parents 9ad04ee + 099bd45 commit c0a0db1

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
This file lists the most important changes made in each release of
44
`textwrap`.
55

6+
## Version 0.13.4 (2021-02-23)
7+
8+
This release removes `println!` statements which was left behind in
9+
`unfill` by mistake.
10+
11+
* [#296](https://github.com/mgeisler/textwrap/pull/296): Improve house
12+
building example with more comments.
13+
* [#297](https://github.com/mgeisler/textwrap/pull/297): Remove debug
14+
prints in the new `unfill` function.
15+
616
## Version 0.13.3 (2021-02-20)
717

818
This release contains a bugfix for `indent` and improved handling of
@@ -13,7 +23,9 @@ and functions for reformatting already wrapped text.
1323
`core::display_width` to handle emojis when the unicode-width Cargo
1424
feature is disabled.
1525
* [#279](https://github.com/mgeisler/textwrap/pull/279): Make `indent`
16-
preserve existing newlines in the input string.
26+
preserve existing newlines in the input string. Before,
27+
`indent("foo", "")` would return `"foo\n"` by mistake. It now
28+
returns `"foo"` instead.
1729
* [#281](https://github.com/mgeisler/textwrap/pull/281): Ensure all
1830
`Options` fields have examples.
1931
* [#282](https://github.com/mgeisler/textwrap/pull/282): Add a

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "textwrap"
3-
version = "0.13.3"
3+
version = "0.13.4"
44
authors = ["Martin Geisler <[email protected]>"]
55
description = "Powerful library for word wrapping, indenting, and dedenting strings"
66
documentation = "https://docs.rs/textwrap/"

images/textwrap-0.13.4.svg

Lines changed: 17 additions & 0 deletions
Loading

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
//! The full dependency graph, where dashed lines indicate optional
125125
//! dependencies, is shown below:
126126
//!
127-
//! <img src="https://raw.githubusercontent.com/mgeisler/textwrap/master/images/textwrap-0.13.3.svg">
127+
//! <img src="https://raw.githubusercontent.com/mgeisler/textwrap/master/images/textwrap-0.13.4.svg">
128128
//!
129129
//! ## Default Features
130130
//!
@@ -165,7 +165,7 @@
165165
//! [terminal_size]: https://docs.rs/terminal_size/
166166
//! [hyphenation]: https://docs.rs/hyphenation/
167167
168-
#![doc(html_root_url = "https://docs.rs/textwrap/0.13.3")]
168+
#![doc(html_root_url = "https://docs.rs/textwrap/0.13.4")]
169169
#![forbid(unsafe_code)] // See https://github.com/mgeisler/textwrap/issues/210
170170
#![deny(missing_docs)]
171171
#![deny(missing_debug_implementations)]

0 commit comments

Comments
 (0)