Skip to content

Commit f429594

Browse files
authored
Merge pull request #393 from mgeisler/release-0.14.1
Release 0.14.1
2 parents 747d698 + 40f20be commit f429594

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

CHANGELOG.md

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

6+
## Version 0.14.1 (2021-06-26)
7+
8+
This release fixes a panic reported by @Makoto, thanks!
9+
10+
* [#391](https://github.com/mgeisler/textwrap/pull/391): Fix panic in
11+
`find_words` due to string access outside of a character boundary.
12+
613
## Version 0.14.0 (2021-06-05)
714

815
This is a major feature release which makes Textwrap more configurable

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.14.0"
3+
version = "0.14.1"
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.14.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
@@ -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.14.0.svg">
127+
//! <img src="https://raw.githubusercontent.com/mgeisler/textwrap/master/images/textwrap-0.14.1.svg">
128128
//!
129129
//! ## Default Features
130130
//!
@@ -178,7 +178,7 @@
178178
//! [terminal_size]: https://docs.rs/terminal_size/
179179
//! [hyphenation]: https://docs.rs/hyphenation/
180180
181-
#![doc(html_root_url = "https://docs.rs/textwrap/0.14.0")]
181+
#![doc(html_root_url = "https://docs.rs/textwrap/0.14.1")]
182182
#![forbid(unsafe_code)] // See https://github.com/mgeisler/textwrap/issues/210
183183
#![deny(missing_docs)]
184184
#![deny(missing_debug_implementations)]

0 commit comments

Comments
 (0)