From 93b25bdf8098b1b12fdc07fa794c40bb9940f9ad Mon Sep 17 00:00:00 2001 From: "Graciliano M. P." Date: Thu, 2 Jul 2026 00:19:12 -0300 Subject: [PATCH] Sync webClientVersion to 1.14.8 (fix CI) The `webClientVersion` constant in lib/core/version.dart is manually kept in sync with pubspec.yaml and is asserted by test/core/version_test.dart. It was missed in the 1.14.7 and 1.14.8 bumps (stuck at 1.14.6), failing Dart CI. Bump it to match. Co-Authored-By: Claude Opus 4.8 (1M context) --- lib/core/version.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/version.dart b/lib/core/version.dart index ea684ce..e231973 100644 --- a/lib/core/version.dart +++ b/lib/core/version.dart @@ -6,4 +6,4 @@ library; /// This web client's version (matches `pubspec.yaml`). -const String webClientVersion = '1.14.6'; +const String webClientVersion = '1.14.8';