From ca0d73716ad9fb1b0dfd1b97ed989579445ca88b Mon Sep 17 00:00:00 2001 From: tehkillerbee Date: Thu, 11 Dec 2025 21:45:31 +0100 Subject: [PATCH] Version bump --- HISTORY.rst | 6 ++++++ docs/conf.py | 2 +- pyproject.toml | 2 +- tidalapi/__init__.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index de2ef3e8..536db06f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ======= +v0.8.10 +-------- +* Tests: Updated misc. tests, added pagination tests - tehkillerbee_ +* Bugfix: Final chunk count must not exceed maximum number of playlists (Fixes #389) - tehkillerbee_ +* Bugfix: Fix track version if empty (Fixes #388) - tehkillerbee_ + v0.8.9 -------- * Bugfix: Return correct Exception, depending on status_code (404, 429). Add missing Raise, comments. Fixes #385 - tehkillerbee_ diff --git a/docs/conf.py b/docs/conf.py index f050bc1f..cf471276 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = "The tidalapi Developers" # The full version, including alpha/beta/rc tags -release = "0.8.9" +release = "0.8.10" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 97fcd5e1..024a7af9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tidalapi" -version = "0.8.9" +version = "0.8.10" description = "Unofficial API for TIDAL music streaming service." authors = ["Thomas Amland "] maintainers = ["tehkillerbee "] diff --git a/tidalapi/__init__.py b/tidalapi/__init__.py index c2cbb696..eac49a07 100644 --- a/tidalapi/__init__.py +++ b/tidalapi/__init__.py @@ -17,4 +17,4 @@ User, ) -__version__ = "0.8.9" +__version__ = "0.8.10"