Skip to content

Commit 5e77677

Browse files
committed
changelog
Signed-off-by: vince <vince.white@zepben.com>
1 parent 31658b5 commit 5e77677

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# EAS Python client
22
## [0.25.0] - UNRELEASED
33
### Breaking Changes
4-
* None.
4+
* The `beforeCutOffProfile` and `afterCutOffProfile` fields in `PVVoltVARVoltWattConfig` have been renamed to snake case
5+
and are now `before_cut_off_profile` and `after_cut_off_profile` respectively.
56

67
### New Features
78
* None.

src/zepben/eas/client/work_package.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,11 +217,11 @@ class PVVoltVARVoltWattConfig:
217217
"commissionedDate" will receive the [before_cut_off_profile]. If null, the [after_cut_off_profile] profile is applied to all equipment."""
218218

219219
before_cut_off_profile: Optional[str] = None
220-
"""Optional name of the profile to apply to equipment with a "commissionDate" before [cut_off_date].
220+
"""Optional name of the profile to apply to equipment with a "commissionedDate" before [cut_off_date].
221221
If null the equipment will be translated into a regular Generator the rather a PVSystem."""
222222

223223
after_cut_off_profile: Optional[str] = None
224-
"""Optional name of the profile to apply to equipment with a "commissionDate" after [cut_off_date].
224+
"""Optional name of the profile to apply to equipment with a "commissionedDate" after [cut_off_date].
225225
If null the equipment will be translated into a regular Generator the rather a PVSystem."""
226226

227227

0 commit comments

Comments
 (0)