Skip to content

Commit fd75699

Browse files
committed
chore: publish v5.1.0
1 parent 77f0a62 commit fd75699

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# aspeak Changelog
22

3+
# v5.1.0
4+
5+
- Add binary feature to aspeak crate to make rust lib less bloated
6+
- From now on, building the CLI requires `-F binary` flag.
7+
38
# v5.0.1-alpha.2
49

510
- Add binary feature to make rust lib less bloated

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aspeak"
3-
version = "5.0.1-alpha.2"
3+
version = "5.1.0"
44
edition = "2021"
55
authors = ["kxxt <[email protected]>"]
66
description = "A simple text-to-speech client for Azure TTS API."
@@ -55,7 +55,7 @@ colored = "2.0.0"
5555
env_logger = { version = "0.10.0", optional = true }
5656
log = { version = "0.4.17", features = ["release_max_level_info"] }
5757
phf = { version = "0.11.1", features = ["macros"] }
58-
reqwest = { version = "0.11.14", default_features = false, features = [
58+
reqwest = { version = "0.11.14", default-features = false, features = [
5959
"json",
6060
"native-tls",
6161
"socks",

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ From v4.1.0, You can install `aspeak-bin` from AUR.
4343
Installing from PyPI will also install the python binding of `aspeak` for you. Check [Library Usage#Python](#Python) for more information on using the python binding.
4444

4545
```bash
46-
pip install -U aspeak==5.0.0
46+
pip install -U aspeak==5.1.0
4747
```
4848

4949
Now the prebuilt wheels are only available for x86_64 architecture.
@@ -59,7 +59,7 @@ Because of manylinux compatibility issues, the wheels for linux are not availabl
5959
The easiest way to install `aspeak` from source is to use cargo:
6060

6161
```bash
62-
cargo install aspeak
62+
cargo install aspeak -F binary
6363
```
6464

6565
Alternatively, you can also install `aspeak` from AUR.
@@ -77,7 +77,7 @@ After cloning the repository and `cd` into the directory
7777

7878
```bash
7979
maturin build --release --strip -F python --bindings pyo3 --interpreter python --manifest-path Cargo.toml --out dist-pyo3
80-
maturin build --release --strip --bindings bin --interpreter python --manifest-path Cargo.toml --out dist-bin
80+
maturin build --release --strip --bindings bin -F binary --interpreter python --manifest-path Cargo.toml --out dist-bin
8181
bash merge-wheel.bash
8282
```
8383

0 commit comments

Comments
 (0)