From 99a7ac4394b77f2e6f0acdfa3d0f81b3c39ee981 Mon Sep 17 00:00:00 2001 From: tonisives Date: Wed, 20 Nov 2024 20:37:04 +0700 Subject: [PATCH] add brands --- CHANGELOG.md | 7 +++++++ gradle.properties | 2 +- .../com/highmobility/hmkitfleet/model/Brand.kt | 12 ++++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6c93a8..937a170 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,14 @@ This is the changelog for v2 releases. See v0/v1 releases in appropriate branches. +## [2.1.2] - 2024-11-20 + +### Added + +- Dacia, Volkswagen, Seat and Cupra brands + ## [2.1.1] - 2024-09-18 + ### Added - Audi and Škoda brand diff --git a/gradle.properties b/gradle.properties index c7ff229..d2aa35e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=2.1.1 +version=2.1.2 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 b4bdca4..8438107 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 @@ -71,6 +71,18 @@ enum class Brand { @SerialName("audi") AUDI, + @SerialName("dacia") + DACIA, + + @SerialName("volkswagen") + VOLKSWAGEN, + + @SerialName("seat") + SEAT, + + @SerialName("cupra") + CUPRA, + @SerialName("sandbox") SANDBOX, }