Skip to content

Commit

Permalink
🐛 FIX: fixed parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
unl0ck committed Jan 31, 2025
1 parent 7859778 commit 274ee4d
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 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.56"
current_version = "2.11.57"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
Expand Down
10 changes: 9 additions & 1 deletion GridboxConnectorAddon-edge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
<!-- https://developers.home-assistant.io/docs/add-ons/presentation#keeping-a-changelog -->
## 2.11.55

## 2.11.57

### 🔨 Fixed

- added temp Battery value

## 2.11.56

### 🔨 Fixed

- added temp Battery value

## 2.11.55

### 🔨 Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def __init__(self, mqtt_settings, device_name="Viessmann Gridbox", device_identi
self.photovoltaic_sensor = Sensor(photovoltaic_settings)

# Battery sum
self.battery_sum = HAViessmannBattery(mqtt_settings, self.device_info, "sum", "", prefix, unit_of_power, state_class)
self.battery_sum = HAViessmannBattery(mqtt_settings, self.device_info, "sum", "",self.logger, prefix, unit_of_power, state_class)

# Heater
self.heater_sensor = HAViessmannHeater(mqtt_settings, self.device_info, "", "", prefix)
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.56",
"version": "2.11.57",
"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.56"
version: "2.11.57"
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.56",
"version": "2.11.57",
"urls": {
"login": "https://gridx.eu.auth0.com/oauth/token",
"gateways": "https://api.gridx.de/gateways",
Expand Down

0 comments on commit 274ee4d

Please sign in to comment.