Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Update aiopvpc to fix order of prices for INDEXED sensor #20

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [v1.2.1](https://github.com/azogue/ha-pvpc-custom/tree/v1.2.1) 🐛 Fix unsorted prices in new composed sensor 'INDEXED' (2024-03-25)

- 🐛 Update to `aiopvpc>=4.3.1` to fix order of prices for new INDEXED composed sensor (azogue/aiopvpc#72)

## [v1.2.0](https://github.com/azogue/ha-pvpc-custom/tree/v1.2.0) ✨ Add new sensors for market adjustment and indexed tariff (2024-03-10)

- ✨ Add new price sensors: **Market adjustment** (from ESIOS API indicator 2108), and **Indexed tariff** (as _composed_ price sensor calculated as `PVPC - ADJUSTMENT`), from first-time contributor @MiguelAngelLV in #18 (and azogue/aiopvpc#69) 🍻
Expand Down
4 changes: 2 additions & 2 deletions custom_components/pvpc_hourly_pricing/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"issue_tracker": "https://github.com/azogue/ha-pvpc-custom/issues",
"loggers": ["aiopvpc"],
"quality_scale": "platinum",
"requirements": ["aiopvpc>=4.3.0"],
"version": "1.2.0"
"requirements": ["aiopvpc>=4.3.1"],
"version": "1.2.1"
}
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ha-pvpc-custom"
version = "1.2.0"
version = "1.2.1"
description = "HomeAssistant custom integration for Spain electricity hourly pricing (PVPC)"
authors = ["Eugenio Panadero <eugenio.panadero@gmail.com>"]
license = "MIT"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/azogue/ha-pvpc-custom"
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
homeassistant = ">=2024.2.0"
aiopvpc = ">=4.3.0"
aiopvpc = ">=4.3.1"

[tool.poetry.dev-dependencies]
pre-commit = ">=2.2.0"
Expand Down
Loading