Skip to content

Commit abad5c4

Browse files
Merge pull request #83 from davidusb-geek/davidusb-geek/fix/fixing_missing_git
Davidusb geek/fix/fixing missing git
2 parents 8fde6ba + c39f7fa commit abad5c4

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

emhass/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [0.8.2] - 2024-03-10
4+
### Improvement
5+
- Proposed a new solution to survive DST using special option of Pandas `round` method
6+
- Added option to `web_server` to init `data_path` as an options param
7+
- Styling docs and html files on webui
8+
- Advanced and basic pages improvements on webui
9+
### Fix
10+
- Fixed support for ARM achitectures
11+
312
## [0.8.1] - 2024-02-28
413
### Improvement
514
- Improved documentation
@@ -619,6 +628,8 @@ The new machine learning forecast module is here! Check the updated documentatio
619628
[0.6.5]: https://github.com/davidusb-geek/emhass-add-on/releases/tag/v0.6.5
620629
[0.6.6]: https://github.com/davidusb-geek/emhass-add-on/releases/tag/v0.6.6
621630
[0.8.0]: https://github.com/davidusb-geek/emhass-add-on/releases/tag/v0.8.0
631+
[0.8.1]: https://github.com/davidusb-geek/emhass-add-on/releases/tag/v0.8.1
632+
[0.8.2]: https://github.com/davidusb-geek/emhass-add-on/releases/tag/v0.8.2
622633

623634
# Notes
624635
All notable changes to this project will be documented in this file.

emhass/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ RUN [[ "${BUILD_ARCH}" == "armv7" ]] && apt-get update && apt-get install libato
5454

5555
#remove build only packages
5656
RUN apt-get purge -y --auto-remove \
57-
git \
5857
gcc \
5958
patchelf \
6059
cmake \
@@ -85,7 +84,7 @@ LABEL \
8584
ENTRYPOINT python3 -m emhass.web_server --addon True --url http://supervisor/core/api --key $SUPERVISOR_TOKEN
8685

8786
#-----------
88-
#EMHASS-Add-on testing with git
87+
#EMHASS-Add-on testing with git
8988
FROM addon as addon-git
9089
ARG build_repo=https://github.com/davidusb-geek/emhass.git
9190
ARG build_branch=master

emhass/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: EMHASS
22
description: Energy Management for Home Assistant
33
url: https://github.com/davidusb-geek/emhass
4-
version: 0.8.1
4+
version: 0.8.2
55
slug: emhass
66
arch:
77
- aarch64

emhass/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
numpy==1.26.4
22
scipy==1.12.0
3-
pandas<=2.0.3
3+
pandas<=2.0.3
44
pvlib>=0.10.2
55
protobuf>=3.0.0
66
pytz>=2021.1
@@ -16,5 +16,5 @@ flask>=2.0.3
1616
waitress>=2.1.1
1717
plotly>=5.6.0
1818
#EMHASS
19-
emhass==0.8.1
19+
emhass==0.8.2
2020
#git+https://github.com/davidusb-geek/emhass

0 commit comments

Comments
 (0)