diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 0be1d63..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,59 +0,0 @@ -# Changelog - -v0.1.13 - -- Re-add cloud cover compensation code with some fixes. -- Make the remaining energy today sensor use 15-minutely watt data instead of hourly data. - -v0.1.12 - -- Sort integration's `manifest.json` to pass hassfest validation. This is required for submission to the Home Assistant Community Store's default repo. - -v0.1.11 - -- Fixes a bug where sometimes data is fetched when attempting to update the power sensors. - -v0.1.10 - -- Fix setting of custom Open-Meteo URL -- Add support for capping power to inverter capacity -- Provide detailed forecast in sensor attribute -- Fix config_flow.py for HA <2024.4.0b0 -- Write some documentation - -v0.1.9 - -- Switched to using GitHub releases. - -v0.1.8 - -- Fix `TypeError: unsupported operand type(s) for *: ‘NoneType’ and ‘int’` bug. - -v0.1.6 - -- Add D2, D3, D4, D5, D6, D7 energy production sensors. -- Clarify that effiency factor is only for DC wire efficiency not cell efficiency. - -v0.1.5 - -- Fix start time for power sensors. - -v0.1.4 - -- Fix typo in cell temperature calculation. - -v0.1.3 - -- Account for cell efficiency and wind speed for cell temperature calculations. - -v0.1.2 - -- Update to open-meteo-solar-forecast 0.1.8. - -v0.1.1 - -- Update to open-meteo-solar-forecast 0.1.7. - -v0.1.0 - -- Initial release. diff --git a/README.md b/README.md index 4dd53ca..b3d7a04 100644 --- a/README.md +++ b/README.md @@ -69,10 +69,6 @@ If you check the "Power Now" sensor at: Notice that the power sensor picks the last known value until the next update, not necessarily the closest value. Also, the power sensors are not interpolated, so the "Power Now" sensor will not show ~`150` W at `12:07`. -## Changes - -Changes are documented in the [CHANGELOG.md](https://github.com/rany2/ha-open-meteo-solar-forecast/blob/master/CHANGELOG.md). - ## Credits The [forecast_solar component code](https://github.com/home-assistant/core/tree/dev/homeassistant/components/forecast_solar) was used as a base for this integration. Thanks for such a clean starting point! diff --git a/custom_components/open_meteo_solar_forecast/manifest.json b/custom_components/open_meteo_solar_forecast/manifest.json index 74a3336..de1ab35 100644 --- a/custom_components/open_meteo_solar_forecast/manifest.json +++ b/custom_components/open_meteo_solar_forecast/manifest.json @@ -7,6 +7,6 @@ "integration_type": "service", "iot_class": "cloud_polling", "issue_tracker": "https://github.com/rany2/ha-open-meteo-solar-forecast/issues", - "requirements": ["open_meteo_solar_forecast==0.1.15"], - "version": "0.1.13" + "requirements": ["open_meteo_solar_forecast==0.1.16"], + "version": "0.1.14" }