diff --git a/CHANGELOG.md b/CHANGELOG.md index dd921fd0..8a62e232 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v5.11.0 (2023-05-09) +### Feature +* Add ability to remove a bookmark on an episode ([`4eb896a`](https://github.com/browniebroke/deezer-python/commit/4eb896a207c36609bf08498e58ecbcf670ec8fbc)) +* Add ability to add a bookmark to an episode ([`6dc32ac`](https://github.com/browniebroke/deezer-python/commit/6dc32ac7f90839483504f6312be799a64f607b6e)) +* Add ability to mark a playlist as seen ([`dac1530`](https://github.com/browniebroke/deezer-python/commit/dac1530d278097b545bdb7f942ab3c4e701ca097)) + ## 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)) diff --git a/pyproject.toml b/pyproject.toml index 855625a2..3f36a5e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deezer-python" -version = "5.10.0" +version = "5.11.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 5d446567..8592784f 100644 --- a/src/deezer/__init__.py +++ b/src/deezer/__init__.py @@ -15,7 +15,7 @@ User, ) -__version__ = "5.10.0" +__version__ = "5.11.0" __all__ = [ "Album", "Artist",