From 5cb0ef2bdab38fcd1602812bf02296e173b4824e Mon Sep 17 00:00:00 2001 From: davidusb-geek Date: Mon, 23 Dec 2024 14:20:24 +0100 Subject: [PATCH] Prepared a new release v0.11.3 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- docs/conf.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f862e833..30058234 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 0.11.3 - 2024-10-31 +### Improvement +- Runtime parameters now support all config parameters +- Adopted the Ruff code fomatting +- Added a Github Actions for Google OSV security code scan +- Updated the param_definitions.json +- Bump skforecast from 0.13.0 to 0.14.0. This needed upgrading a bunch of deprecated options. Notably skforcast now uses the time series cross-validation object (cv) from sklearn +### Fix +- Updated the default battery optimization weights +- Fix publish_data defaulting to opt_res_latest, tweak warning logs +- Added MLForecaster options to load_forecast_method for param_definitions.json + ## 0.11.2 - 2024-10-31 ### Improvement - Added support to retrieve HA configuration. This will be used in the future to automatically retrieve some parameters as the currency diff --git a/README.md b/README.md index d3a6b0a8..173770ed 100644 --- a/README.md +++ b/README.md @@ -613,7 +613,7 @@ This can be controlled in the configuration file with parameters `lp_solver` and MIT License -Copyright (c) 2021-2023 David HERNANDEZ +Copyright (c) 2021-2025 David HERNANDEZ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/docs/conf.py b/docs/conf.py index e7774c33..3a2995bb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,11 +18,11 @@ # -- Project information ----------------------------------------------------- project = 'emhass' -copyright = '2021-2023, David HERNANDEZ' +copyright = '2021-2025, David HERNANDEZ' author = 'David HERNANDEZ' # The full version, including alpha/beta/rc tags -release = '0.11.2' +release = '0.11.3' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index cf65d306..1e5ebfc1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "emhass" -version = "0.11.2" +version = "0.11.3" description = "An Energy Management System for Home Assistant" readme = "README.md" requires-python = ">=3.10, <3.12"