From f80ea03cd8410744ee27547367b5b3791f2a8814 Mon Sep 17 00:00:00 2001 From: Leonardo Custodio Date: Wed, 2 Oct 2024 22:38:42 +0400 Subject: [PATCH] Update enjin.dart Signed-off-by: Leonardo Custodio --- lib/consts/enjin/enjin.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/consts/enjin/enjin.dart b/lib/consts/enjin/enjin.dart index 84d1e6c..17a22fe 100644 --- a/lib/consts/enjin/enjin.dart +++ b/lib/consts/enjin/enjin.dart @@ -2,7 +2,7 @@ import 'canary/canary.dart' as c; import 'production/production.dart' as p; String canaryLatest() { - return c.v1032; + return c.v1033; } String productionLatest() { @@ -57,6 +57,8 @@ String canarySpec(specVersion) { return c.v1031; case 1032: return c.v1032; + case 1033: + return c.v1033; default: return canaryLatest(); }