From a638890410055474cec0efe7376a34655f2c64d4 Mon Sep 17 00:00:00 2001 From: Jake Macdonald Date: Tue, 9 Jan 2024 15:25:14 +0000 Subject: [PATCH 1/2] update build_modules to allow the 3.4 SDK --- build_modules/CHANGELOG.md | 4 ++++ build_modules/pubspec.yaml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/build_modules/CHANGELOG.md b/build_modules/CHANGELOG.md index 9848cbc36..a76c0efbb 100644 --- a/build_modules/CHANGELOG.md +++ b/build_modules/CHANGELOG.md @@ -1,3 +1,7 @@ +## 5.0.6 + +- Allow version 3.4.x of the Dart SDK. + ## 5.0.5 - Allow version 3.3.x of the Dart SDK. diff --git a/build_modules/pubspec.yaml b/build_modules/pubspec.yaml index 4bf4866f3..2b3110b38 100644 --- a/build_modules/pubspec.yaml +++ b/build_modules/pubspec.yaml @@ -1,12 +1,12 @@ name: build_modules -version: 5.0.5 +version: 5.0.6 description: >- Builders to analyze and split Dart code into individually compilable modules based on imports. repository: https://github.com/dart-lang/build/tree/master/build_modules environment: - sdk: '>=3.0.0 <3.4.0' + sdk: '>=3.0.0 <3.5.0' dependencies: analyzer: '>=5.1.0 <7.0.0' From 4f944bc8ff891e8849b58ca270b54adf084cc65a Mon Sep 17 00:00:00 2001 From: Jake Macdonald Date: Tue, 9 Jan 2024 15:30:26 +0000 Subject: [PATCH 2/2] update example to override build_modules version --- example/pubspec.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/example/pubspec.yaml b/example/pubspec.yaml index c16b163a0..84a3642e4 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -13,3 +13,8 @@ dev_dependencies: build_runner: ^2.0.0 build_web_compilers: ^4.0.0 dart_flutter_team_lints: ^2.0.0 + +# TODO: Remove once build_modules version 5.0.6 is published. +dependency_overrides: + build_modules: + path: ../build_modules