From 03b13c17def0f23e58840fc7abafffc4ce159973 Mon Sep 17 00:00:00 2001 From: tonisives Date: Wed, 18 Sep 2024 07:10:22 +0300 Subject: [PATCH] add audi and skoda --- .github/workflows/update-version.yml | 2 +- CHANGELOG.md | 6 ++++++ gradle.properties | 2 +- hmkit-fleet/src/main/kotlin/model/VehicleAccess.kt | 6 ++++++ 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-version.yml b/.github/workflows/update-version.yml index dea8165..1b0dbc0 100644 --- a/.github/workflows/update-version.yml +++ b/.github/workflows/update-version.yml @@ -9,7 +9,7 @@ on: jobs: create-new-tag: - if: ${{ github.event.pull_request.merged }} + if: false runs-on: ubuntu-latest diff --git a/CHANGELOG.md b/CHANGELOG.md index 65114c9..fb48c9e 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.6] - 2024-09-18 + +### Added + +- Audi and Škoda brand + ## [1.0.5] - 2024-3-14 ### Added diff --git a/gradle.properties b/gradle.properties index 520f9ce..ee67f25 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=1.0.5 +version=1.0.6 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 4f46005..35d4cf5 100644 --- a/hmkit-fleet/src/main/kotlin/model/VehicleAccess.kt +++ b/hmkit-fleet/src/main/kotlin/model/VehicleAccess.kt @@ -119,6 +119,12 @@ enum class Brand { @SerialName("volvo-cars") VOLVO_CARS, + @SerialName("skoda") + SKODA, + + @SerialName("audi") + AUDI, + @SerialName("sandbox") SANDBOX, } \ No newline at end of file