From 8f8a60183a4caeabe6587b4bd948e55d9ec1490b Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 17 Oct 2021 11:31:27 +0000 Subject: [PATCH] 4.0.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 16 ++++++++++++++++ deezer/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e170e403d..5fa104167 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## v4.0.0 (2021-10-17) +### Feature +* Port `Client`'s `request` method to `AsyncClient` ([`bd9edb2`](https://github.com/browniebroke/deezer-python/commit/bd9edb2bff0fb450ed7c438b13df40eed0a970f0)) +* Refactor existing methods to use newer request ([`0ddc5c2`](https://github.com/browniebroke/deezer-python/commit/0ddc5c21cec62d06e38ba42e4e82df8ff35bd73d)) + +### Fix +* Remove `Comment` resource as it's no longer in the Deezer API ([`6bb0647`](https://github.com/browniebroke/deezer-python/commit/6bb064734e8104d0cb23b666143f010be421982f)) +* Make `Resource.get_relation` work with Tornado client ([`0980055`](https://github.com/browniebroke/deezer-python/commit/0980055d7754c53e5cc437b187b74329a9cffc95)) + +### Breaking +* the `advanced_search` method no longer exists and has been merged into the regular `search` method. ([`46cf5f1`](https://github.com/browniebroke/deezer-python/commit/46cf5f1453692e1ee61c15e1fd87093ea99b636f)) +* The `get_object`, `object_url` and `url` methods have been removed from the `Client` and `AsyncClient` classes ([`3b7c167`](https://github.com/browniebroke/deezer-python/commit/3b7c16725114e3aea25584014617b298b8483e31)) +* The `Client.get_radios` method has been removed and replaced by `Client.list_radios` ([`b7d940f`](https://github.com/browniebroke/deezer-python/commit/b7d940fcf16450a804adfb8552a1cba6ab97a8c6)) +* The `Client.get_genres` method has been removed and replaced by `Client.list_genres` ([`2e284af`](https://github.com/browniebroke/deezer-python/commit/2e284af9d15941ac842fdb24e74eaa8ae3abb5d3)) +* A `DeezerErrorResponse` is now raised in case of error, instead of `ValueError` ([`0ddc5c2`](https://github.com/browniebroke/deezer-python/commit/0ddc5c21cec62d06e38ba42e4e82df8ff35bd73d)) + ## v3.2.0 (2021-10-15) ### Feature * Get current user's listening history ([`43ea8ca`](https://github.com/browniebroke/deezer-python/commit/43ea8cab43a2b1b778f478d9dc8df1a478454bf9)) diff --git a/deezer/__init__.py b/deezer/__init__.py index 071bbca78..673783617 100644 --- a/deezer/__init__.py +++ b/deezer/__init__.py @@ -10,7 +10,7 @@ User, ) -__version__ = "3.2.0" +__version__ = "4.0.0" __all__ = [ "Client", "Resource", diff --git a/pyproject.toml b/pyproject.toml index 3063744d0..2707ef176 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deezer-python" -version = "3.2.0" +version = "4.0.0" description = "A friendly wrapper library for the Deezer API" authors = ["Bruno Alla "] license = "MIT"