Skip to content

Commit 364d83b

Browse files
committed
update version numbers in README.md and lib.rs
(and one quick tabs->spaces conversion in test.rs)
1 parent 4acb5e9 commit 364d83b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ to your `Cargo.toml`:
4040

4141
```toml
4242
[dependencies]
43-
unicode-segmentation = "1.0.0"
43+
unicode-segmentation = "1.0.1"
4444
```

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
//!
4747
//! ```toml
4848
//! [dependencies]
49-
//! unicode-segmentation = "1.0.0"
49+
//! unicode-segmentation = "1.0.1"
5050
//! ```
5151
5252
#![deny(missing_docs, unsafe_code)]

src/test.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ fn test_graphemes() {
2424
&["\u{20}", "\u{600}\u{600}\u{20}"],
2525
&["\u{20}", "\u{600}", "\u{600}", "\u{20}"]),
2626

27-
// Test for Prepend followed by two Any chars
28-
("\u{600}\u{20}\u{20}",
27+
// Test for Prepend followed by two Any chars
28+
("\u{600}\u{20}\u{20}",
2929
&["\u{600}\u{20}", "\u{20}"],
3030
&["\u{600}", "\u{20}", "\u{20}"]),
3131
];

0 commit comments

Comments
 (0)