Skip to content

Commit 34ae232

Browse files
committed
Fix accidental breakage
1 parent f7268cc commit 34ae232

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "unicode-segmentation"
4-
version = "1.13.0"
4+
version = "1.13.1"
55
authors = ["kwantam <kwantam@gmail.com>", "Manish Goregaokar <manishsmail@gmail.com>"]
66

77
edition = "2018"

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,14 @@ unicode-segmentation = "1"
4343

4444
# Change Log
4545

46-
## 1.13.0
46+
## 1.13.1
4747

4848
* [#147](https://github.org/unicode-rs/unicode-segmentation/pull/147) Add ascii fast path for unicode_word_indices and unicode_words
4949
* [#157](https://github.org/unicode-rs/unicode-segmentation/pull/157) Support Unicode 17.0.0
5050

51+
## 0.13.0
52+
53+
Yanked due to accidental breakage.
5154

5255
## 1.12.0
5356

@@ -57,6 +60,7 @@ unicode-segmentation = "1"
5760
* [#137](https://github.com/unicode-rs/unicode-segmentation/pull/137) Fix unwrap panic in next_boundary()
5861
* [#140](https://github.com/unicode-rs/unicode-segmentation/pull/140) Support Unicode 16.0.0
5962

63+
6064
## 1.11.0
6165
* [#124](https://github.com/unicode-rs/unicode-segmentation/pull/124) Update data to Unicode 15.1
6266
* [#128](https://github.com/unicode-rs/unicode-segmentation/pull/128) Add `size_hint` to iterators

src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,7 @@ pub use grapheme::{GraphemeCursor, GraphemeIncomplete};
6363
pub use grapheme::{GraphemeIndices, Graphemes};
6464
pub use sentence::{USentenceBoundIndices, USentenceBounds, UnicodeSentences};
6565
pub use tables::UNICODE_VERSION;
66-
pub use word::{UWordBoundIndices, UWordBounds};
67-
68-
use crate::word::{UnicodeWordIndices, UnicodeWords};
66+
pub use word::{UWordBoundIndices, UWordBounds, UnicodeWordIndices, UnicodeWords};
6967

7068
mod grapheme;
7169
mod sentence;

0 commit comments

Comments
 (0)