From f7d1bb3d939e6ffbec8f0a416fb06f77e3e9d00f Mon Sep 17 00:00:00 2001 From: James Ding Date: Tue, 11 Nov 2025 11:57:38 -0600 Subject: [PATCH 1/2] feat: update project description for clarity Signed-off-by: James Ding --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c0cac58..8aa9dfb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "fish-audio-sdk" version = "1.0.0" -description = "Python SDK for Fish Audio text-to-speech and voice cloning API" +description = "The official Python library for the Fish Audio API" authors = [ {name = "abersheeran", email = "me@abersheeran.com"}, {name = "James Ding", email = "james@fish.audio"}, From b8eb30a66ff2b4089dce613351f6efa07e6f845b Mon Sep 17 00:00:00 2001 From: James Ding Date: Tue, 11 Nov 2025 11:59:16 -0600 Subject: [PATCH 2/2] feat: add Dependabot configuration for daily updates Signed-off-by: James Ding --- .github/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..39765ca --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + + - package-ecosystem: "uv" + directory: "/" + schedule: + interval: "daily" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" \ No newline at end of file