diff --git a/CHANGELOG.md b/CHANGELOG.md index 4368e776..c4230752 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v2.4.0 (2021-10-07) +### Feature +* Add official python 3.10 support ([`b29b0cb`](https://github.com/browniebroke/deezer-python/commit/b29b0cb87e025bc52663c8d81d0f1dd94277badc)) + ## v2.3.1 (2021-09-13) ### Fix * **deps:** Update dependency sphinx-rtd-theme to v1 ([`af43757`](https://github.com/browniebroke/deezer-python/commit/af43757238760ca8fa23ff67cafa11cd8dd74eea)) diff --git a/deezer/__init__.py b/deezer/__init__.py index 874582ba..61f7cb73 100644 --- a/deezer/__init__.py +++ b/deezer/__init__.py @@ -11,7 +11,7 @@ User, ) -__version__ = "2.3.1" +__version__ = "2.4.0" __all__ = [ "Client", "Resource", diff --git a/pyproject.toml b/pyproject.toml index 052889bc..bd5c2802 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deezer-python" -version = "2.3.1" +version = "2.4.0" description = "A friendly wrapper library for the Deezer API" authors = ["Bruno Alla "] license = "MIT"