Skip to content

Commit 34b030c

Browse files
Update release notes
To reflect changes in public interface types. Signed-off-by: Daniel Zullo <[email protected]>
1 parent 1d48545 commit 34b030c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

RELEASE_NOTES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,14 @@ This release replaces the `@actor` decorator with a new `Actor` class.
8282

8383
- The base actors (`ConfigManagingActor`, `ComponentMetricsResamplingActor`, `DataSourcingActor`, `PowerDistributingActor`) now inherit from the new `Actor` class, if you are using them directly, you need to start them manually with `await actor.start()` and you might need to do some other adjustments.
8484

85+
- The `BatteryPool.power_distribution_results` method has been enhanced to provide power distribution results in the form of `Power` objects, replacing the previous use of `float` values.
86+
87+
- In the `Request` class:
88+
* The attribute `request_timeout_sec` has been updated and is now named `request_timeout` and it is represented by a `timedelta` object rather than a `float`.
89+
* The attribute `power` is now presented as a `Power` object, as opposed to a `float`.
90+
91+
- Within the `EVChargerPool.set_bounds` method, the parameter `max_amps` has been redefined as `max_current`, and it is now represented using a `Current` object instead of a `float`.
92+
8593
## New Features
8694

8795
- DFS for compentent graph

0 commit comments

Comments
 (0)