diff --git a/build_modules/CHANGELOG.md b/build_modules/CHANGELOG.md index 3ae73e50f..5bdf3d00e 100644 --- a/build_modules/CHANGELOG.md +++ b/build_modules/CHANGELOG.md @@ -1,4 +1,6 @@ -## 5.0.11-wip +## 5.0.11 + +- Support 3.8.0 pre-release sdks. ## 5.0.10 diff --git a/build_modules/pubspec.yaml b/build_modules/pubspec.yaml index d3692d437..085527608 100644 --- a/build_modules/pubspec.yaml +++ b/build_modules/pubspec.yaml @@ -1,5 +1,5 @@ name: build_modules -version: 5.0.11-wip +version: 5.0.11 description: >- Builders to analyze and split Dart code into individually compilable modules based on imports. @@ -7,7 +7,7 @@ repository: https://github.com/dart-lang/build/tree/master/build_modules resolution: workspace environment: - sdk: '>=3.6.0 <3.7.0-z' + sdk: '>=3.6.0 <3.8.0-z' dependencies: analyzer: '>=5.1.0 <8.0.0' diff --git a/build_web_compilers/CHANGELOG.md b/build_web_compilers/CHANGELOG.md index d8c95f4da..ca0c97ae9 100644 --- a/build_web_compilers/CHANGELOG.md +++ b/build_web_compilers/CHANGELOG.md @@ -1,4 +1,6 @@ -## 4.1.1-wip +## 4.1.1 + +- Support 3.8.0 pre-release sdks. ## 4.1.0 diff --git a/build_web_compilers/pubspec.yaml b/build_web_compilers/pubspec.yaml index f6c6a82f5..050e1f2c2 100644 --- a/build_web_compilers/pubspec.yaml +++ b/build_web_compilers/pubspec.yaml @@ -1,11 +1,11 @@ name: build_web_compilers -version: 4.1.1-wip +version: 4.1.1 description: Builder implementations wrapping the dart2js and DDC compilers. repository: https://github.com/dart-lang/build/tree/master/build_web_compilers resolution: workspace environment: - sdk: '>=3.6.0 <3.7.0-z' + sdk: '>=3.6.0 <3.8.0-z' dependencies: analyzer: '>=5.1.0 <8.0.0' diff --git a/example/pubspec.yaml b/example/pubspec.yaml index eda633429..f5c1d909c 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -9,6 +9,7 @@ dependencies: build: ^2.0.0 # Not imported in code, but used to constrain `build.yaml` requirements build_config: ^1.0.0 + web: ^1.1.0 dev_dependencies: build_runner: ^2.0.0 diff --git a/example/web/index.dart b/example/web/index.dart index 74798fc70..2c58d7e2e 100644 --- a/example/web/index.dart +++ b/example/web/index.dart @@ -2,10 +2,9 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -import 'dart:html'; - import 'package:example/generated/texts/web.dart'; +import 'package:web/web.dart'; void main() { - querySelector('#content')!.appendText(running); + (document.querySelector('#content') as HTMLElement).innerText += running; } diff --git a/example/web/index.dart.info b/example/web/index.dart.info index 49bcb656b..326937ea7 100644 --- a/example/web/index.dart.info +++ b/example/web/index.dart.info @@ -1,3 +1,3 @@ Input ID: example|web/index.dart Member count: 1 -Visible libraries: 27 +Visible libraries: 216