From 579bf10ae09272772b82d59a296689215a2affc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Gapin=CC=81ski?= Date: Tue, 10 Oct 2023 22:07:23 +0200 Subject: [PATCH] 2023.41.100 --- .../repository/release_notes_repository.dart | 11 +++++++++++ pubspec.yaml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/lib/feature/releaseNotes/repository/release_notes_repository.dart b/lib/feature/releaseNotes/repository/release_notes_repository.dart index a55ceba..08b254d 100644 --- a/lib/feature/releaseNotes/repository/release_notes_repository.dart +++ b/lib/feature/releaseNotes/repository/release_notes_repository.dart @@ -6,6 +6,17 @@ import 'package:tesla_android/feature/releaseNotes/model/version.dart'; @injectable class ReleaseNotesRepository { static const ReleaseNotes _releaseNotes = ReleaseNotes(versions: [ + Version( + versionName: "2023.41.100", + changelogItems: [ + ChangelogItem( + title: "NVMe support", + shortDescription: "Performance improvements", + descriptionMarkdown: + "NVMe drives are now supported on the Compute Module 4", + ), + ], + ), Version( versionName: "2023.40.2", changelogItems: [ diff --git a/pubspec.yaml b/pubspec.yaml index f9b63f7..0447de0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: Tesla Android publish_to: 'none' -version: 2023.40.2 +version: 2023.41.100 environment: flutter: "3.13.3"