Skip to content

Commit

Permalink
🐛 FIX: now using correct file
Browse files Browse the repository at this point in the history
  • Loading branch information
unl0ck committed Dec 28, 2024
1 parent 9f6d095 commit 5802c2f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion-edge.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "2.11.38"
current_version = "2.11.39"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
Expand Down
2 changes: 1 addition & 1 deletion GridboxConnectorAddon-dev/GridboxConnector/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def historical_data_task(gridboxConnector:GridboxConnector, ha_viessmann_histori
if len(measurement) > 0:
result = measurement[0]
total = result["total"]
ha_viessmann_historical_device.update_sensors(total, midnight_today.isoformat())
ha_viessmann_historical_device.update_sensors(total)
if one_time_print or logger.level == logging.DEBUG:
logger.info(total)
one_time_print = False
Expand Down
2 changes: 1 addition & 1 deletion GridboxConnectorAddon-edge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- https://developers.home-assistant.io/docs/add-ons/presentation#keeping-a-changelog -->

## 2.11.36
## 2.11.39

### 🔨 Fixed

Expand Down
2 changes: 1 addition & 1 deletion GridboxConnectorAddon-edge/GridboxConnector/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def historical_data_task(gridboxConnector:GridboxConnector, ha_viessmann_histori
if len(measurement) > 0:
result = measurement[0]
total = result["total"]
ha_viessmann_historical_device.update_sensors(total, last_reset=midnight_today)
ha_viessmann_historical_device.update_sensors(total, last_reset=midnight_today.isoformat())
if one_time_print or logger.level == logging.DEBUG:
logger.info(total)
one_time_print = False
Expand Down
2 changes: 1 addition & 1 deletion GridboxConnectorAddon-edge/cloudSettings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.11.38",
"version": "2.11.39",
"urls": {
"login": "https://gridx.eu.auth0.com/oauth/token",
"gateways": "https://api.gridx.de/gateways",
Expand Down
2 changes: 1 addition & 1 deletion GridboxConnectorAddon-edge/config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# https://developers.home-assistant.io/docs/add-ons/configuration#add-on-config
---
name: Viessmann Gridbox Connector (edge)
version: "2.11.38"
version: "2.11.39"
slug: "gridbox_connector_edge"
description: "Viessmann Gridbox Connector (edge)"
url: "https://github.com/unl0ck/homeassistant-addon-viessmann-gridbox/tree/main/GridboxConnectorAddon-edge"
Expand Down
2 changes: 1 addition & 1 deletion GridboxConnectorAddon-edge/rootfs/share/cloudSettings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.11.38",
"version": "2.11.39",
"urls": {
"login": "https://gridx.eu.auth0.com/oauth/token",
"gateways": "https://api.gridx.de/gateways",
Expand Down

0 comments on commit 5802c2f

Please sign in to comment.