diff --git a/CHANGELOG.md b/CHANGELOG.md index fb48c9e..081feb8 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.7] - 2024-11-20 + +### Added + +- Dacia, Volkswagen, Seat and Cupra brands + ## [1.0.6] - 2024-09-18 ### Added diff --git a/gradle.properties b/gradle.properties index ee67f25..e4c4ce4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=1.0.6 +version=1.0.7 kotlin.code.style=official \ No newline at end of file diff --git a/hmkit-fleet/src/main/kotlin/model/VehicleAccess.kt b/hmkit-fleet/src/main/kotlin/model/VehicleAccess.kt index 35d4cf5..fc0683a 100644 --- a/hmkit-fleet/src/main/kotlin/model/VehicleAccess.kt +++ b/hmkit-fleet/src/main/kotlin/model/VehicleAccess.kt @@ -125,6 +125,18 @@ enum class Brand { @SerialName("audi") AUDI, + @SerialName("dacia") + DACIA, + + @SerialName("volkswagen") + VOLKSWAGEN, + + @SerialName("seat") + SEAT, + + @SerialName("cupra") + CUPRA, + @SerialName("sandbox") SANDBOX, } \ No newline at end of file