Skip to content

Commit

Permalink
4.0.0
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
actions-user committed Oct 17, 2021
1 parent 6bb0647 commit 8f8a601
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,22 @@

<!--next-version-placeholder-->

## 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))
Expand Down
2 changes: 1 addition & 1 deletion deezer/__init__.py
Expand Up @@ -10,7 +10,7 @@
User,
)

__version__ = "3.2.0"
__version__ = "4.0.0"
__all__ = [
"Client",
"Resource",
Expand Down
2 changes: 1 addition & 1 deletion 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 <alla.brunoo@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit 8f8a601

Please sign in to comment.