Skip to content

Commit efc9921

Browse files
authored
Merge pull request #470 from mgeisler/release-0.15.1
Release 0.15.1
2 parents c68d4d3 + a2d33eb commit efc9921

File tree

4 files changed

+41
-3
lines changed

4 files changed

+41
-3
lines changed

CHANGELOG.md

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

6+
## Version 0.15.1 (2022-09-15)
7+
8+
This release which fixes crashes in `unfill` and `refill`. It also
9+
adds a new option to make the line endings (`\n` or `\r\n`)
10+
configurable:
11+
12+
* [#448](https://github.com/mgeisler/textwrap/pull/448): Migrate to
13+
the Rust 2021 edition.
14+
* [#458](https://github.com/mgeisler/textwrap/pull/458): Test with
15+
Rust 1.56 (first compiler release with support for Rust 2021).
16+
* [#454](https://github.com/mgeisler/textwrap/pull/454): Make line
17+
endings configurable.
18+
* [#467](https://github.com/mgeisler/textwrap/pull/467): Fix `unfill`
19+
and `refill` crashes.
20+
* [#468](https://github.com/mgeisler/textwrap/pull/468): Fix `refill`
21+
to add back correct line ending.
22+
623
## Version 0.15.0 (2022-02-27)
724

825
This is a major feature release with two main changes:

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.15.0"
3+
version = "0.15.1"
44
authors = ["Martin Geisler <[email protected]>"]
55
description = "Library for word wrapping, indenting, and dedenting strings. Has optional support for Unicode and emojis as well as machine hyphenation."
66
documentation = "https://docs.rs/textwrap/"

images/textwrap-0.15.1.svg

Lines changed: 21 additions & 0 deletions
Loading

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
//! The full dependency graph, where dashed lines indicate optional
113113
//! dependencies, is shown below:
114114
//!
115-
//! <img src="https://raw.githubusercontent.com/mgeisler/textwrap/master/images/textwrap-0.15.0.svg">
115+
//! <img src="https://raw.githubusercontent.com/mgeisler/textwrap/master/images/textwrap-0.15.1.svg">
116116
//!
117117
//! ## Default Features
118118
//!
@@ -189,7 +189,7 @@
189189
//! [terminal_size]: https://docs.rs/terminal_size/
190190
//! [hyphenation]: https://docs.rs/hyphenation/
191191
192-
#![doc(html_root_url = "https://docs.rs/textwrap/0.15.0")]
192+
#![doc(html_root_url = "https://docs.rs/textwrap/0.15.1")]
193193
#![forbid(unsafe_code)] // See https://github.com/mgeisler/textwrap/issues/210
194194
#![deny(missing_docs)]
195195
#![deny(missing_debug_implementations)]

0 commit comments

Comments
 (0)