From a30e6c2f8cd49bddb3ce07e311fd304a03e05503 Mon Sep 17 00:00:00 2001 From: Otto Winter Date: Thu, 24 Oct 2019 19:38:12 +0200 Subject: [PATCH] Bump version to 2.4.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Forgot to commit a file 😐 --- aioesphomeapi/model.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aioesphomeapi/model.py b/aioesphomeapi/model.py index 3ea20bc..1a65932 100644 --- a/aioesphomeapi/model.py +++ b/aioesphomeapi/model.py @@ -218,7 +218,7 @@ class ClimateInfo(EntityInfo): @attr.s class ClimateState(EntityState): - mode = attr.ib(type=ClimateMode, converter=ClimateMode, default=CimateMode.OFF) + mode = attr.ib(type=ClimateMode, converter=ClimateMode, default=ClimateMode.OFF) action = attr.ib(type=ClimateAction, converter=ClimateAction, default=ClimateAction.OFF) current_temperature = attr.ib(type=float, default=0.0) target_temperature = attr.ib(type=float, default=0.0) diff --git a/setup.py b/setup.py index 03499ab..af7c9a4 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ """aioesphomeapi setup script.""" from setuptools import find_packages, setup -VERSION = '2.4.1' +VERSION = '2.4.2' PROJECT_NAME = 'aioesphomeapi' PROJECT_PACKAGE_NAME = 'aioesphomeapi' PROJECT_LICENSE = 'MIT'