Skip to content

Commit aad0b1a

Browse files
committed
Version bump
1 parent c7395d6 commit aad0b1a

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hypher"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Laurenz <[email protected]>"]
55
edition = "2021"
66
description = "hypher separates words into syllables."

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ added:
3737
[dependencies]
3838
hypher = { version = "0.1", default-features = false, features = ["english", "greek"] }
3939
```
40+
4041
Each language added individually contributes:
4142

4243
| Language | Space |

src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ assert_eq!(syllables.next(), None);
4141
/*!
4242
# Languages
4343
By default, this crate supports hyphenating more than 30 languages. Embedding
44-
automata for all these languages will add ~1.1 MB to your binary. Alternatively,
45-
you can selectively enable individual languages. For example, you can embed just
46-
english as shown below and then only 27 KB will be added to your binary.
44+
automata for all these languages will add ~1.1 MiB to your binary. Alternatively,
45+
you can disable support for all languages and manually choose which ones get
46+
added:
4747
4848
```toml
4949
[dependencies]
50-
hypher = { version = "0.1", default-features = false, features = ["english"] }
50+
hypher = { version = "0.1", default-features = false, features = ["english", "greek"] }
5151
```
5252
*/
5353

0 commit comments

Comments
 (0)