diff --git a/CHANGELOG.md b/CHANGELOG.md index d3a87de..965ba38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ _Changes in the next release_ --- +## v0.3.0 - 2024-03-18 +### Added +- New commands: dpad, menu, context_menu and info. Contributed by @albaintor, thanks! ([#33](https://github.com/unfoldedcircle/integration-denonavr/issues/33)). + ## v0.2.4 - 2024-02-17 ### Fixed - Remove reconnect delay after standby. Requires new Remote Two firmware ([unfoldedcircle/feature-and-bug-tracker#320](https://github.com/unfoldedcircle/feature-and-bug-tracker/issues/320)). diff --git a/driver.json b/driver.json index 7b65304..f1c60e0 100644 --- a/driver.json +++ b/driver.json @@ -1,6 +1,6 @@ { "driver_id": "uc_denon_driver", - "version": "0.2.4", + "version": "0.3.0", "min_core_api": "0.20.0", "name": { "en": "Denon AVR Network Receivers" @@ -44,5 +44,5 @@ } ] }, - "release_date": "2024-02-17" + "release_date": "2024-03-18" } diff --git a/pyproject.toml b/pyproject.toml index a72685e..4864bf5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "intg-denonavr" -version = "0.2.4" +version = "0.3.0" authors = [ { name = "Unfolded Circle ApS", email = "hello@unfoldedcircle.com" } ] @@ -22,8 +22,8 @@ classifiers = [ requires-python = ">=3.11" dependencies = [ "pyee>=9.0", - "denonavr~=0.11.4", - "ucapi==0.1.3", + "denonavr~=0.11.6", + "ucapi==0.1.7", ] [project.readme]