Skip to content

Commit

Permalink
fix bug that caused discrepancies in case files (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
Juliamg authored Jan 30, 2024
1 parent 2cf5c4f commit e537a9c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Changes are grouped as follows
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [0.82.2] - 2024-01-29
### Fixed
* Bug in the HeightToVolume function not using the correct heights in the calculation

## [0.82.1] - 2024-01-25
### Fixed
* Bug in the filter for the views `CustomBidMethond` and `CustomBidMatrix` in the `DayAheadBid` frontend model.
Expand Down
2 changes: 1 addition & 1 deletion cognite/powerops/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.82.1"
__version__ = "0.82.2"
2 changes: 1 addition & 1 deletion cognite/powerops/prerun_transformations/transformations.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def volumes(self, value: list[float]):

@property
def heights(self):
return self._volumes
return self._heights

@heights.setter
def heights(self, value: list[float]):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cognite-power-ops"
version = "0.82.1"
version = "0.82.2"
description = "SDK for power markets operations on Cognite Data Fusion"
readme = "README.md"
authors = ["Cognite <[email protected]>"]
Expand Down

0 comments on commit e537a9c

Please sign in to comment.