From a3acead1fbfb00cc2a38fa96805b9909123766aa Mon Sep 17 00:00:00 2001 From: cswimr Date: Thu, 14 Nov 2024 15:42:19 -0500 Subject: [PATCH] (2.1.3) fixed a typo and updated `pyflowery.version` --- .vscode/settings.json | 0 pyflowery/pyflowery.py | 2 +- pyflowery/version.py | 2 +- pyproject.toml | 2 +- uv.lock | 4 ++-- 5 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..e69de29 diff --git a/pyflowery/pyflowery.py b/pyflowery/pyflowery.py index 4b91c6e..b9b195d 100644 --- a/pyflowery/pyflowery.py +++ b/pyflowery/pyflowery.py @@ -53,7 +53,7 @@ class FloweryAPI: return self._voices_cache or None async def fetch_voice(self, voice_id: str) -> Voice: - """Fetch a voice from the Flowery API. This method bypasses the cache and directly queries the Flowery API. You should usually use `get_voice()` instead. + """Fetch a voice from the Flowery API. This method bypasses the cache and directly queries the Flowery API. You should usually use `get_voices()` instead. Args: voice_id (str): The ID of the voice diff --git a/pyflowery/version.py b/pyflowery/version.py index 127c148..4260069 100644 --- a/pyflowery/version.py +++ b/pyflowery/version.py @@ -1 +1 @@ -VERSION = "2.1.0" +VERSION = "2.1.3" diff --git a/pyproject.toml b/pyproject.toml index 8f4784d..2ebbbe5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyflowery" -version = "2.1.2" +version = "2.1.3" description = "A Python API wrapper for the Flowery API" readme = "README.md" requires-python = "<4.0,>=3.11" diff --git a/uv.lock b/uv.lock index 1b9210c..2726a21 100644 --- a/uv.lock +++ b/uv.lock @@ -1,5 +1,5 @@ version = 1 -requires-python = ">=3.11" +requires-python = ">=3.11, <4.0" resolution-markers = [ "python_full_version < '3.12'", "python_full_version >= '3.12'", @@ -891,7 +891,7 @@ wheels = [ [[package]] name = "pyflowery" -version = "2.1.1" +version = "2.1.2" source = { virtual = "." } dependencies = [ { name = "aiohttp" },