From 4e6b28207ae20c0a735e591e272b8ed0b4d8e297 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 27 Sep 2024 06:43:44 +0000 Subject: [PATCH] Prepare version 0.3.0 --- CHANGELOG.md | 5 +++++ lib/src/scalable_app.dart | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4160583..5cfef2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.3.0] + +- Released @ 9/2024 (UTC) +- breaking: Simplify + ## [0.2.9] - Released @ 9/2024 (UTC) diff --git a/lib/src/scalable_app.dart b/lib/src/scalable_app.dart index 6390de7..b6b47d4 100644 --- a/lib/src/scalable_app.dart +++ b/lib/src/scalable_app.dart @@ -25,5 +25,6 @@ final class AppScale { static final Future _pValue = SharedDoublePodCreator.global('') .then((e) => di.register(_pValue)); - static FutureOr get pAppScale => di.until(); + static FutureOr get pAppScale => + di.until(); }