From 3f9dd88d6f739b98a86aea608e238621f5b40add Mon Sep 17 00:00:00 2001 From: hexgrad <166769057+hexgrad@users.noreply.github.com> Date: Fri, 28 Feb 2025 18:49:08 -0800 Subject: [PATCH] Bump to 0.8.4 (#120) * Bump to 0.8.4 * Update README.md --- README.md | 2 +- kokoro/__init__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d19f1c6..162fc53 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ An inference library for [Kokoro-82M](https://huggingface.co/hexgrad/Kokoro-82M) You can run this cell on [Google Colab](https://colab.research.google.com/). [Listen to samples](https://huggingface.co/hexgrad/Kokoro-82M/blob/main/SAMPLES.md). ```py # 1️⃣ Install kokoro -!pip install -q kokoro>=0.7.11 soundfile +!pip install -q kokoro>=0.8.4 soundfile # 2️⃣ Install espeak, used for English OOD fallback and some non-English languages !apt-get -qq -y install espeak-ng > /dev/null 2>&1 # 🇪🇸 'e' => Spanish es diff --git a/kokoro/__init__.py b/kokoro/__init__.py index ef402e6..9669a38 100644 --- a/kokoro/__init__.py +++ b/kokoro/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.8.3' +__version__ = '0.8.4' from loguru import logger import sys diff --git a/pyproject.toml b/pyproject.toml index dc3be17..ea7d147 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "kokoro" -version = "0.8.3" +version = "0.8.4" description = "TTS" readme = "README.md" authors = [ @@ -20,7 +20,7 @@ requires-python = ">=3.10, <3.13" dependencies = [ "huggingface_hub", "loguru", - "misaki[en]>=0.8.3", + "misaki[en]>=0.8.4", "numpy==1.26.4", "scipy", "torch",