Bump version to 2.4.2

Forgot to commit a file 😐
This commit is contained in:
Otto Winter 2019-10-24 19:38:12 +02:00
parent f85cf7d826
commit a30e6c2f8c
No known key found for this signature in database
GPG Key ID: DB66C0BE6013F97E
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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'