From 871f45009295576f5bbb00110e3f99b787f768d5 Mon Sep 17 00:00:00 2001 From: Marc Billow Date: Sat, 11 Jun 2022 17:01:31 -0500 Subject: [PATCH] Update python-chargepoint to 1.5.0 --- .docker/services/run | 2 +- custom_components/chargepoint/const.py | 2 +- custom_components/chargepoint/manifest.json | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.docker/services/run b/.docker/services/run index 9c3e301..0f72d18 100755 --- a/.docker/services/run +++ b/.docker/services/run @@ -5,7 +5,7 @@ cd /config || bashio::exit.nok "Can't find config folder!" -pip3 install python-chargepoint==1.4.0 || bashio::log.info "Failed to install python-chargepoint!" +pip3 install python-chargepoint==1.5.0 || bashio::log.info "Failed to install python-chargepoint!" # Enable Jemalloc for Home Assistant Core, unless disabled if [[ -z "${DISABLE_JEMALLOC+x}" ]]; then diff --git a/custom_components/chargepoint/const.py b/custom_components/chargepoint/const.py index 3fee68f..40a0a81 100755 --- a/custom_components/chargepoint/const.py +++ b/custom_components/chargepoint/const.py @@ -6,7 +6,7 @@ NAME = "ChargePoint" DOMAIN = "chargepoint" DOMAIN_DATA = f"{DOMAIN}_data" -VERSION = "0.2.1" +VERSION = "0.2.2" ATTRIBUTION = "Data provided by https://www.chargepoint.com" ISSUE_URL = "https://github.com/mbillow/ha-chargepoint/issues" diff --git a/custom_components/chargepoint/manifest.json b/custom_components/chargepoint/manifest.json index 84b3c7f..cd3a1a0 100755 --- a/custom_components/chargepoint/manifest.json +++ b/custom_components/chargepoint/manifest.json @@ -4,10 +4,10 @@ "documentation": "https://github.com/mbillow/ha-chargepoint", "codeowners": ["@mbillow"], "requirements": [ - "python-chargepoint==1.4.0" + "python-chargepoint==1.5.0" ], "config_flow": true, "issue_tracker": "https://github.com/mbillow/ha-chargepoint/issues", - "version": "0.2.1", + "version": "0.2.2", "iot_class": "cloud_polling" }