From 74f035baff1a7a2bbc70fb67aaec77e29d60983d Mon Sep 17 00:00:00 2001 From: tonisives Date: Wed, 18 Sep 2024 07:13:09 +0300 Subject: [PATCH] add brands --- CHANGELOG.md | 4 ++++ gradle.properties | 2 +- .../main/kotlin/com/highmobility/hmkitfleet/model/Brand.kt | 6 ++++++ 3 files changed, 11 insertions(+), 1 deletion(-) 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, }