Skip to content

Commit

Permalink
Merge pull request #351 from fboundy/patch
Browse files Browse the repository at this point in the history
Updated release workflow
  • Loading branch information
fboundy authored Jan 1, 2025
2 parents 2c8de34 + 5095cd6 commit 75f89d9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/auto_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ jobs:
RELEASE_NOTES+="No significant changes."
else
echo "Found commits:"
echo "${COMMITS}"
RELEASE_NOTES+="${COMMITS}"
echo -e "${COMMITS}"
RELEASE_NOTES+=$(echo -e "${COMMITS}")
fi
# Output the release notes
echo "Release notes generated:"\n"${RELEASE_NOTES}"
echo -e "Release notes generated:\n${RELEASE_NOTES}"
echo "release_notes<<EOF" >> $GITHUB_ENV
echo "${RELEASE_NOTES}" >> $GITHUB_ENV
echo -e "${RELEASE_NOTES}" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
# Step 5: Create GitHub Release
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PV Opt: Home Assistant Solar/Battery Optimiser v4.0.3
# PV Opt: Home Assistant Solar/Battery Optimiser v4.0.4


Solar / Battery Charging Optimisation for Home Assistant. This appDaemon application attempts to optimise charging and discharging of a home solar/battery system to minimise cost electricity cost on a daily basis using freely available solar forecast data from SolCast. This is particularly beneficial for Octopus Agile but is also benefeficial for other time-of-use tariffs such as Octopus Flux or simple Economy 7.
Expand Down
2 changes: 1 addition & 1 deletion apps/pv_opt/pv_opt.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import pvpy as pv
from numpy import nan

VERSION = "4.0.3"
VERSION = "4.0.4"
UNITS = {
"current": "A",
"power": "W",
Expand Down

0 comments on commit 75f89d9

Please sign in to comment.