diff --git a/CHANGELOG.md b/CHANGELOG.md index 91ec7dc..e3bd40d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ This is the changelog for v2 releases. See v0/v1 releases in appropriate branches. +## [2.0.4] - 2024-3-14 + +### Added + +- Volvo brand + ## [2.0.3] - 2024-1-31 - Fix `Json {} ignoreUnknownKeys` error diff --git a/gradle.properties b/gradle.properties index 239bf45..585d9b9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=2.0.3 +version=2.0.4 kotlin.code.style=official \ No newline at end of file diff --git a/hmkit-fleet/src/main/kotlin/com/highmobility/hmkitfleet/model/Brand.kt b/hmkit-fleet/src/main/kotlin/com/highmobility/hmkitfleet/model/Brand.kt index cde1605..b4cc5ef 100644 --- a/hmkit-fleet/src/main/kotlin/com/highmobility/hmkitfleet/model/Brand.kt +++ b/hmkit-fleet/src/main/kotlin/com/highmobility/hmkitfleet/model/Brand.kt @@ -62,6 +62,9 @@ enum class Brand { @SerialName("tesla") TESLA, + @SerialName("volvo-cars") + VOLVO_CARS, + @SerialName("sandbox") SANDBOX, }