diff --git a/CHANGELOG.md b/CHANGELOG.md index c42307528..425579d41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ +## v3.0.0 (2021-10-09) +### Breaking +* remove deprecated `asdict` method on `Resource` class ([`daeee61`](https://github.com/browniebroke/deezer-python/commit/daeee6131d249106a2233e432a179aba40cdbbc8)) +* remove deprecated `host` and `use_ssl` arguments for `Client` ([`2bd2c39`](https://github.com/browniebroke/deezer-python/commit/2bd2c39988066999d3ae34995e1e98c31d6c5a17)) + +### Documentation +* Use https in link ([`f7eb114`](https://github.com/browniebroke/deezer-python/commit/f7eb114e4d1d0dba9e8a65f25cb2ce842270036e)) + ## v2.4.0 (2021-10-07) ### Feature * Add official python 3.10 support ([`b29b0cb`](https://github.com/browniebroke/deezer-python/commit/b29b0cb87e025bc52663c8d81d0f1dd94277badc)) diff --git a/deezer/__init__.py b/deezer/__init__.py index 61f7cb738..f3c0dc626 100644 --- a/deezer/__init__.py +++ b/deezer/__init__.py @@ -11,7 +11,7 @@ User, ) -__version__ = "2.4.0" +__version__ = "3.0.0" __all__ = [ "Client", "Resource", diff --git a/pyproject.toml b/pyproject.toml index 6ac23b307..1de0faba7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deezer-python" -version = "2.4.0" +version = "3.0.0" description = "A friendly wrapper library for the Deezer API" authors = ["Bruno Alla "] license = "MIT"