Skip to content

Commit 5d93569

Browse files
authored
Upgrade Dart/Flutter SDK and Dependencies (#26)
## Description ✍️ This PR introduces the following updates: - Adds a `.tool-versions` file to pin development environment tools: - `flutter 3.32.8` - `dart 3.8.1` - Updates `pubspec.yaml` to bump key dependencies: - `intl` from `^0.19.0` → `^0.20.2` - `rxdart` from `^0.27.7` → `^0.28.0` - `collection` from `^1.18.0` → `^1.19.1` ## Overview 👀 These updates ensure compatibility with the latest Flutter SDK and help maintain stability with newer versions of core packages. No functional or visual changes are expected. ## How to Smoke? 1. Run `asdf install` (if using asdf) to apply the pinned versions. 2. Run `flutter pub get` to fetch updated dependencies. 3. Ensure the app builds and runs without issues using the new SDK and package versions.
1 parent 13f8669 commit 5d93569

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.tool-versions

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
flutter 3.32.8
2+
dart 3.8.1

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ dependencies:
1313
sdk: flutter
1414
# Follows the intl version included in Flutter.
1515
# https://github.com/flutter/flutter/blob/84a1e904f44f9b0e9c4510138010edcc653163f8/packages/flutter_localizations/pubspec.yaml#L11
16-
intl: ^0.19.0
17-
rxdart: ^0.27.7
18-
collection: ^1.18.0
16+
intl: ^0.20.2
17+
rxdart: ^0.28.0
18+
collection: ^1.19.1
1919

2020
dev_dependencies:
2121
flutter_test:

0 commit comments

Comments
 (0)