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