From 4d7dfe33ed148471e4cb09a2e0952808e392e7cf Mon Sep 17 00:00:00 2001 From: davidusb-geek Date: Sun, 26 Jan 2025 16:20:11 +0100 Subject: [PATCH] Prepared a new release --- CHANGELOG.md | 13 +++++++++++++ docs/conf.py | 2 +- pyproject.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 588a413e..cd269fc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.12.3 - 2025-01-26 +### Improvement +- PVLib DBs append custom EMHASS modules and inverters. Thanks to @GeoDerp +- Added a `def_total_timestep` parameter (runtime only for now) that can be used instead of `def_total_hours` for passing timestep number instead of hour number. Thanks to @GeoDerp +- Updated list of currencies in utils.py. Thanks to @BDVGitHub +- Multiple roof_id support. Thanks to @radim2tej +### Fix +- Fix inconsistencies with Modules and Inverters from PVLib (thanks to help from @RafAustralia) +- Fix issue with NAN sensors causing crash errors if incorrect (error handling) @purcell-lab +- Fix Database path on optimization file (Thanks to @paulhomes for finding this issue) +- Fixed weight_battery_charge sign problem. Thanks to @radim2tej +- Fixed bug with out of index in list when retrieving config params from HA + ## 0.12.2 - 2025-01-01 ### Patch fix - Fixed Problem with calling weather-forecast-cache diff --git a/docs/conf.py b/docs/conf.py index 5bb99fc7..b0f68aac 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'David HERNANDEZ' # The full version, including alpha/beta/rc tags -release = '0.12.2' +release = '0.12.3' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 37d579ae..e45cc82d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "emhass" -version = "0.12.2" +version = "0.12.3" description = "An Energy Management System for Home Assistant" readme = "README.md" requires-python = ">=3.10, <3.12"