diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dda6b64..dd921fd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v5.10.0 (2023-05-08) +### Feature +* **playlists:** Add functions to create, edit, reorder and delete playlists and edit user library playlists ([#709](https://github.com/browniebroke/deezer-python/issues/709)) ([`5257988`](https://github.com/browniebroke/deezer-python/commit/525798801e341ddbc43bad974aa0b4c58a1e63a8)) + ## v5.9.0 (2023-04-13) ### Feature * **search:** Add search function for playlists ([`318d524`](https://github.com/browniebroke/deezer-python/commit/318d5249bd51de6f007ad5f839b6339069415fc0)) diff --git a/pyproject.toml b/pyproject.toml index 0b68d877..855625a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deezer-python" -version = "5.9.0" +version = "5.10.0" 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 a82425de..5d446567 100644 --- a/src/deezer/__init__.py +++ b/src/deezer/__init__.py @@ -15,7 +15,7 @@ User, ) -__version__ = "5.9.0" +__version__ = "5.10.0" __all__ = [ "Album", "Artist",