This repository was archived by the owner on Nov 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,3 +28,6 @@ doc/api/
2828.flutter-plugins
2929.flutter-plugins-dependencies
3030
31+ # ## Agent files
32+ AGENTS.md
33+
Original file line number Diff line number Diff line change @@ -19,3 +19,4 @@ export 'v1031.dart';
1919export 'v1032.dart' ;
2020export 'v1033.dart' ;
2121export 'v1050.dart' ;
22+ export 'v1060.dart' ;
Load diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import 'canary/canary.dart' as c;
22import 'production/production.dart' as p;
33
44String canaryLatest () {
5- return c.v1050 ;
5+ return c.v1060 ;
66}
77
88String productionLatest () {
@@ -61,6 +61,8 @@ String canarySpec(specVersion) {
6161 return c.v1033;
6262 case 1050 :
6363 return c.v1050;
64+ case 1060 :
65+ return c.v1060;
6466 default :
6567 return canaryLatest ();
6668 }
Original file line number Diff line number Diff line change @@ -19,3 +19,4 @@ export 'v1020.dart';
1919export 'v1021.dart' ;
2020export 'v1022.dart' ;
2121export 'v1023.dart' ;
22+ export 'v1030.dart' ;
Load diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import 'canary/canary.dart' as c;
22import 'production/production.dart' as p;
33
44String canaryLatest () {
5- return c.v1023 ;
5+ return c.v1030 ;
66}
77
88String productionLatest () {
@@ -61,6 +61,8 @@ String canarySpec(specVersion) {
6161 return c.v1022;
6262 case 1023 :
6363 return c.v1023;
64+ case 1030 :
65+ return c.v1030;
6466 default :
6567 return canaryLatest ();
6668 }
Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ process_network() {
7979 update_exports " $base " " $category " " $environment " " $version "
8080
8181 echo " $network : v$version -> lib/consts/$category /$environment /v$version .dart"
82+ echo " REMINDER: Update lib/consts/$category /$category .dart to include case $version in the ${environment} Spec function"
8283}
8384
8485command -v jq > /dev/null || {
You can’t perform that action at this time.
0 commit comments