Skip to content

Commit

Permalink
chore: publish v5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kxxt committed Apr 20, 2023
1 parent 77f0a62 commit fd75699
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# aspeak Changelog

# v5.1.0

- Add binary feature to aspeak crate to make rust lib less bloated
- From now on, building the CLI requires `-F binary` flag.

# v5.0.1-alpha.2

- Add binary feature to make rust lib less bloated
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aspeak"
version = "5.0.1-alpha.2"
version = "5.1.0"
edition = "2021"
authors = ["kxxt <[email protected]>"]
description = "A simple text-to-speech client for Azure TTS API."
Expand Down Expand Up @@ -55,7 +55,7 @@ colored = "2.0.0"
env_logger = { version = "0.10.0", optional = true }
log = { version = "0.4.17", features = ["release_max_level_info"] }
phf = { version = "0.11.1", features = ["macros"] }
reqwest = { version = "0.11.14", default_features = false, features = [
reqwest = { version = "0.11.14", default-features = false, features = [
"json",
"native-tls",
"socks",
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ From v4.1.0, You can install `aspeak-bin` from AUR.
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.

```bash
pip install -U aspeak==5.0.0
pip install -U aspeak==5.1.0
```

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

```bash
cargo install aspeak
cargo install aspeak -F binary
```

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

```bash
maturin build --release --strip -F python --bindings pyo3 --interpreter python --manifest-path Cargo.toml --out dist-pyo3
maturin build --release --strip --bindings bin --interpreter python --manifest-path Cargo.toml --out dist-bin
maturin build --release --strip --bindings bin -F binary --interpreter python --manifest-path Cargo.toml --out dist-bin
bash merge-wheel.bash
```

Expand Down

0 comments on commit fd75699

Please sign in to comment.