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

MessageInfoType in ocpp201 attribute name is wrong #549

Merged
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Change log

- [#548](https://github.com/mobilityhouse/ocpp/issues/548) OCPP 2.0.1 MessageInfoType attribute name correction
- [#300](https://github.com/mobilityhouse/ocpp/issues/300) OCPP 2.0.1 add reference components and variables
- [#518](https://github.com/mobilityhouse/ocpp/issues/518) OCPP 2.0.1 add additional reason codes from v1.3
=======

## 0.24.0 (2023-12-07)

- [#539](https://github.com/mobilityhouse/ocpp/issues/539) feat: Add ChargePoint._handle_call return value. Thanks [@wafa-yah](https://github.com/wafa-yah)
Expand Down
2 changes: 1 addition & 1 deletion ocpp/v201/datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ class MessageInfoType:
message: MessageContentType
state: Optional[enums.MessageStateType] = None
start_date_time: Optional[str] = None
end_data_time: Optional[str] = None
end_date_time: Optional[str] = None
transaction_id: Optional[str] = None
display: Optional[ComponentType] = None

Expand Down
Loading