diff --git a/CHANGELOG.md b/CHANGELOG.md index 49cf56928..e4757cc48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.14.3-1 + +- Correct typing of select_schedule + ## v1.14.3 - Change representation of no-thermostat-schedule-defined to a single `off` option via PR [#899](https://github.com/plugwise/python-plugwise/pull/899) diff --git a/plugwise/constants.py b/plugwise/constants.py index 327862ae3..a35ea6042 100644 --- a/plugwise/constants.py +++ b/plugwise/constants.py @@ -584,7 +584,7 @@ class GwEntityData(TypedDict, total=False): preset_modes: list[str] | None # Schedules: available_schedules: list[str] - select_schedule: str | None + select_schedule: str climate_mode: str # Extra for Adam Master Thermostats diff --git a/pyproject.toml b/pyproject.toml index 4b8b585c5..c072e3c88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "plugwise" -version = "1.14.3" +version = "1.14.3-1" license = "MIT" description = "Plugwise Smile (Adam/Anna/P1) and Stretch module for Python 3." readme = "README.md"