From 0816f599ed6c99898e1f1a5c0f9aa6841956fb70 Mon Sep 17 00:00:00 2001 From: Jacob MacDonald Date: Tue, 9 Jan 2024 10:09:59 -0800 Subject: [PATCH] update build_modules to allow the 3.4 SDK (#3638) * update build_modules to allow the 3.4 SDK * update example to override build_modules version --- build_modules/CHANGELOG.md | 4 ++++ build_modules/pubspec.yaml | 4 ++-- example/pubspec.yaml | 5 +++++ 3 files changed, 11 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' 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