From 2f67c26a4506ec69da28821c908f1f31eb530fc3 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Mon, 11 May 2026 10:31:14 -0400 Subject: [PATCH] fix(flutter): pubspec version must be 3-part semver MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit flutter pub get rejects "2026.05.11.0+1" — it requires strict MAJOR.MINOR.PATCH+BUILD with no leading zeros. Use 2026.5.11+1 as the local default; CI's --build-name="${TAG#v}" still injects the full 4-part tag for release builds, so production APKs report the tag verbatim while local dev builds get a sensible recent value. --- flutter_client/pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter_client/pubspec.yaml b/flutter_client/pubspec.yaml index b7eecf6c..68d04ddf 100644 --- a/flutter_client/pubspec.yaml +++ b/flutter_client/pubspec.yaml @@ -1,7 +1,7 @@ name: minstrel description: Minstrel mobile client publish_to: 'none' -version: 2026.05.11.0+1 +version: 2026.5.11+1 environment: sdk: '>=3.5.0 <4.0.0'