diff --git a/CHANGELOG.md b/CHANGELOG.md index a94e761..92aa806 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ This is the changelog for v1 releases. See v0 changelog in the [v0 branch](https://github.com/highmobility/hmkit-fleet/tree/v0). +## [1.0.1] - 2023-08-25 + +### Added + +- Lexus brand to the `Brand` enum + ## [1.0.0] - 2023-05-22 ### Added diff --git a/hmkit-fleet/src/main/kotlin/model/VehicleAccess.kt b/hmkit-fleet/src/main/kotlin/model/VehicleAccess.kt index 0c6d3d4..7a83ce4 100644 --- a/hmkit-fleet/src/main/kotlin/model/VehicleAccess.kt +++ b/hmkit-fleet/src/main/kotlin/model/VehicleAccess.kt @@ -101,6 +101,9 @@ enum class Brand { @SerialName("toyota") TOYOTA, + @SerialName("lexus") + LEXUS, + @SerialName("sandbox") SANDBOX } \ No newline at end of file