diff --git a/CHANGELOG.md b/CHANGELOG.md index 582f90ea4..82c7c4784 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ +## v4.3.0 (2022-01-03) +### Feature +* Parse track contributors ([`719e42a`](https://github.com/browniebroke/deezer-python/commit/719e42aff6f0c21bd92aaa063bf94076021f1a42)) +* Parse album contributors ([`bd02ec4`](https://github.com/browniebroke/deezer-python/commit/bd02ec41c20ddbff2cc399f496f64b8f095c4854)) + ## v4.2.1 (2021-12-11) ### Fix * **deps:** Update dependency myst-parser to ^0.16 ([`2fe0e71`](https://github.com/browniebroke/deezer-python/commit/2fe0e714aa9e35db2a3aa89911ae086b54cf58e7)) diff --git a/deezer/__init__.py b/deezer/__init__.py index 1a564cbfd..5bb22828f 100644 --- a/deezer/__init__.py +++ b/deezer/__init__.py @@ -10,7 +10,7 @@ User, ) -__version__ = "4.2.1" +__version__ = "4.3.0" __all__ = [ "Client", "Resource", diff --git a/pyproject.toml b/pyproject.toml index 942ba847e..d480c35ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deezer-python" -version = "4.2.1" +version = "4.3.0" description = "A friendly wrapper library for the Deezer API" authors = ["Bruno Alla "] license = "MIT"