diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ee5a7cf..47b84007 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v5.3.2 (2022-04-28) +### Fix +* Remove rate album methods ([`3000fa7`](https://github.com/browniebroke/deezer-python/commit/3000fa7d34c6d9e5dc90f9c60c54308e2a7e6beb)) + ## v5.3.1 (2022-04-23) ### Fix * Add a few missing classes to top level API ([`98ef1a1`](https://github.com/browniebroke/deezer-python/commit/98ef1a1a0b146f34e80a87308cfb1909d5d0eb7a)) diff --git a/pyproject.toml b/pyproject.toml index db049cec..5577502a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deezer-python" -version = "5.3.1" +version = "5.3.2" description = "A friendly wrapper library for the Deezer API" authors = ["Bruno Alla "] license = "MIT" diff --git a/src/deezer/__init__.py b/src/deezer/__init__.py index 8fc8d340..095797e4 100644 --- a/src/deezer/__init__.py +++ b/src/deezer/__init__.py @@ -15,7 +15,7 @@ User, ) -__version__ = "5.3.1" +__version__ = "5.3.2" __all__ = [ "Album", "Artist",