Skip to content

Commit

Permalink
Prepared a new version v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidusb-geek committed Feb 25, 2024
1 parent 995f7d1 commit 51e9555
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.8.0] - 2024-02-25
### Improvement
- Thanks to the great work from @GeoDerp we now have a unified/centralized Dockerfile that allows for testing different installation configuration methods in one place. This greatly helps testing, notably emulating the add-on environment. This will improve overall testing for both teh core code and the add-on. Again many thanks!
- There were also a lot of nice improveements from @GeoDerp to the webui, namely: styling, dynamic table, optimization feedback after button press, logging, a new clear button, etc.
- From now on we will unify the semantic versioning for both the main core code and the add-on.

## [0.7.8] - 2024-02-18
### Improvement
Added some nice logging functionalities and responsiveness on the webui.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'David HERNANDEZ'

# The full version, including alpha/beta/rc tags
release = '0.7.8'
release = '0.8.0'

# -- General configuration ---------------------------------------------------

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name='emhass', # Required
version='0.7.8', # Required
version='0.8.0', # 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)
Expand Down Expand Up @@ -62,5 +62,6 @@
'emhass=emhass.command_line:main',
],
},
package_data={'emhass': ['templates/index.html','templates/template.html','static/style.css','static/img/emhass_icon.png','static/img/emhass_logo_short.svg']},
package_data={'emhass': ['templates/index.html','templates/template.html',
'static/style.css','static/img/emhass_icon.png','static/img/emhass_logo_short.svg']},
)

0 comments on commit 51e9555

Please sign in to comment.