From 38f0cf2b4b81018410b1fe5582979b85d60aac23 Mon Sep 17 00:00:00 2001 From: Markus Zehnder Date: Mon, 23 Dec 2024 17:55:06 +0100 Subject: [PATCH] build: Release 0.5.1 --- CHANGELOG.md | 6 ++++++ driver.json | 4 ++-- pyproject.toml | 8 ++++---- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c4bf97..d9b0d4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ _Changes in the next release_ --- +## v0.5.1 - 2024-12-23 +### Changed +- Improved reconnection delay by not always calling setup. Contributed by @albaintor, thanks! ([#49])(https://github.com/unfoldedcircle/integration-denonavr/pull/49) +- Workaround for setup flow in web-configurator, not showing the first screen with address field. +- Updated denonavr, pyee and uc-api libraries. + ## v0.5.0 - 2024-12-06 ### Added - New commands contributed by @henrikwidlund, thanks! ([#47](https://github.com/unfoldedcircle/integration-denonavr/pull/47), [#48](https://github.com/unfoldedcircle/integration-denonavr/pull/48)) diff --git a/driver.json b/driver.json index 542201f..17b5140 100644 --- a/driver.json +++ b/driver.json @@ -1,6 +1,6 @@ { "driver_id": "denonavr", - "version": "0.5.0", + "version": "0.5.1", "min_core_api": "0.20.0", "name": { "en": "Denon AVR Network Receivers" @@ -44,5 +44,5 @@ } ] }, - "release_date": "2024-12-06" + "release_date": "2024-12-23" } diff --git a/pyproject.toml b/pyproject.toml index c829b3b..8cf33ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "intg-denonavr" -version = "0.5.0" +version = "0.5.1" authors = [ { name = "Unfolded Circle ApS", email = "hello@unfoldedcircle.com" } ] @@ -21,9 +21,9 @@ classifiers = [ ] requires-python = ">=3.11" dependencies = [ - "pyee>=9.0", - "denonavr~=0.11.6", - "ucapi==0.1.7", + "pyee~=12.1.1", + "denonavr~=1.0.1", + "ucapi==0.2.0", ] [project.readme]