diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d04cf9..a6c93a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ This is the changelog for v2 releases. See v0/v1 releases in appropriate branches. +## [2.1.1] - 2024-09-18 +### Added +- Audi and Škoda brand + ## [2.1.0] - 2024-4-23 ### Added diff --git a/gradle.properties b/gradle.properties index b846d4b..c7ff229 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=2.1.0 +version=2.1.1 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 b4cc5ef..b4bdca4 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 @@ -65,6 +65,12 @@ enum class Brand { @SerialName("volvo-cars") VOLVO_CARS, + @SerialName("skoda") + SKODA, + + @SerialName("audi") + AUDI, + @SerialName("sandbox") SANDBOX, }