File tree Expand file tree Collapse file tree 4 files changed +33
-4
lines changed
Expand file tree Collapse file tree 4 files changed +33
-4
lines changed Original file line number Diff line number Diff line change 33This 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
818This 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
Original file line number Diff line number Diff line change 11[package ]
22name = " textwrap"
3- version = " 0.13.3 "
3+ version = " 0.13.4 "
44authors = [
" Martin Geisler <[email protected] >" ]
55description = " Powerful library for word wrapping, indenting, and dedenting strings"
66documentation = " https://docs.rs/textwrap/"
Original file line number Diff line number Diff line change 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//!
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) ]
You can’t perform that action at this time.
0 commit comments