Skip to content

Commit

Permalink
Merge branch 'master' into fix-data-transfer-response-data-type
Browse files Browse the repository at this point in the history
  • Loading branch information
mdwcrft authored Dec 6, 2023
2 parents ca13300 + 88e2006 commit 88f5d4f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
14 changes: 8 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# Change log


- [#516](https://github.com/mobilityhouse/ocpp/issues/516) OCPP 2.0.1 add additional security events from v1.3
- [#537] (https://github.com/mobilityhouse/ocpp/pull/537) Fix DataTransfer data types
- [#531] (https://github.com/mobilityhouse/ocpp/pull/531) Add 1.6 security extension datatypes
=======
- [#528](https://github.com/mobilityhouse/ocpp/issues/528) v2.0.1 CertificateHashDataChainType childCertificateHashData requires the default of None
- [#510](https://github.com/mobilityhouse/ocpp/issues/510) v2.0.1 UnitOfMeasureType - Enums missing and update docstring to allow use for variableCharacteristics
- [#508](https://github.com/mobilityhouse/ocpp/issues/508) Exception - OccurrenceConstraintViolationError doc string correction

## 0.23.0 (2023-11-30)

- [#531] Feat: Add 1.6 security extension datatypes. Thanks [@proelke](https://github.com/proelke)
- [#528](https://github.com/mobilityhouse/ocpp/issues/528) v2.0.1 CertificateHashDataChainType childCertificateHashData requires the default of None.
- [#510](https://github.com/mobilityhouse/ocpp/issues/510) v2.0.1 UnitOfMeasureType - Enums missing and update docstring to allow use for variableCharacteristics.
- [#508](https://github.com/mobilityhouse/ocpp/issues/508) Exception - OccurrenceConstraintViolationError doc string correction.


## 0.22.0 (2023-11-03)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Auke Willem Oosterhoff"

# The full version, including alpha/beta/rc tags
release = "0.22.0"
release = "0.23.0"


# -- General configuration ---------------------------------------------------
Expand Down
6 changes: 5 additions & 1 deletion ocpp/v201/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -1330,7 +1330,9 @@ class StatusInfoReasonType(str, Enum):


class SecurityEventType(str, Enum):
"""Security Events as listed in Appendices (Appendix 1. Security Events)"""
"""
Security Events as listed in Appendices (Appendix 1. Security Events) v1.3
"""

firmware_updated = "FirmwareUpdated"
failed_to_authenticate_at_csms = "FailedToAuthenticateAtCsms"
Expand All @@ -1350,3 +1352,5 @@ class SecurityEventType(str, Enum):
invalid_charging_station_certificate = "InvalidChargingStationCertificate"
invalid_tls_version = "InvalidTLSVersion"
invalid_tls_cipher_suite = "InvalidTLSCipherSuite"
maintenance_login_accepted = "MaintenanceLoginAccepted"
maintenance_login_failed = "MaintenanceLoginFailed"
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 = "ocpp"
version = "0.22.0"
version = "0.23.0"
description = "Python package implementing the JSON version of the Open Charge Point Protocol (OCPP)."
authors = [
"André Duarte <[email protected]>",
Expand Down

0 comments on commit 88f5d4f

Please sign in to comment.