diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ecce3b3..6131e0bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.11] - 2022-04-28 +### Fix +- Fixed wrong handling of DateTimeIndex when dealing with forecast method for list of values and csv read. + ## [0.2.10] - 2022-04-26 ### Fix - Fixed faulty forecast method for list of values and csv read. diff --git a/README.md b/README.md index b6d3d502..94f3fd3f 100644 --- a/README.md +++ b/README.md @@ -280,6 +280,10 @@ And generate distribution archives with: ``` python3 -m build ``` +Or with: +``` +python3 setup.py build bdist_wheel +``` Create a new tag version: ``` git tag vX.X.X diff --git a/docs/conf.py b/docs/conf.py index fb48fa7a..ea7cbf33 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.2.10' +release = '0.2.11' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 201a5760..54808545 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name='emhass', # Required - version='0.2.10', # Required + version='0.2.11', # Required description='An Energy Management System for Home Assistant', # Optional long_description=long_description, # Optional long_description_content_type='text/markdown', # Optional (see note above)