diff --git a/CHANGELOG.md b/CHANGELOG.md index e2208f41..34495035 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ +## v6.0.0 (2023-06-27) + +### Feature + +* Drop support for Python 3.7 ([#758](https://github.com/browniebroke/deezer-python/issues/758)) ([`d80f1e7`](https://github.com/browniebroke/deezer-python/commit/d80f1e75fc4e979938a3241d8244bc3fbbd31c23)) + +### Breaking + +* Drop support for Python 3.7 as it reached EOL on June 27, 2023. More infos: https://devguide.python.org/versions/ ([`d80f1e7`](https://github.com/browniebroke/deezer-python/commit/d80f1e75fc4e979938a3241d8244bc3fbbd31c23)) + ## v5.12.0 (2023-05-11) ### Feature * Add `User.create_playlist` method ([`c768a8b`](https://github.com/browniebroke/deezer-python/commit/c768a8be4b116c09325a3c0cfb19c941adbd257b)) diff --git a/pyproject.toml b/pyproject.toml index f53957c1..b8e27d76 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deezer-python" -version = "5.12.0" +version = "6.0.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 55cb3e30..1bab031a 100644 --- a/src/deezer/__init__.py +++ b/src/deezer/__init__.py @@ -15,7 +15,7 @@ User, ) -__version__ = "5.12.0" +__version__ = "6.0.0" __all__ = [ "Album", "Artist",