diff --git a/build/CHANGELOG.md b/build/CHANGELOG.md index e5a8706a65..9dc54be8de 100644 --- a/build/CHANGELOG.md +++ b/build/CHANGELOG.md @@ -1,4 +1,4 @@ -## 3.0.2-wip +## 3.0.2 - Use `build_runner_core` 9.3.0. - Documentation revamp. diff --git a/build/pubspec.yaml b/build/pubspec.yaml index dc71f5231c..22ed12f3e6 100644 --- a/build/pubspec.yaml +++ b/build/pubspec.yaml @@ -1,5 +1,5 @@ name: build -version: 3.0.2-wip +version: 3.0.2 description: A package for authoring build_runner compatible code generators. repository: https://github.com/dart-lang/build/tree/master/build resolution: workspace @@ -10,7 +10,7 @@ environment: dependencies: analyzer: '>=7.4.0 <9.0.0' async: ^2.5.0 - build_runner_core: '9.3.0-wip' + build_runner_core: '9.3.0' built_collection: ^5.1.1 built_value: ^8.9.5 convert: ^3.0.0 diff --git a/build_config/CHANGELOG.md b/build_config/CHANGELOG.md index 9ce41d6ef2..a118034198 100644 --- a/build_config/CHANGELOG.md +++ b/build_config/CHANGELOG.md @@ -1,4 +1,4 @@ -## 1.2.0-wip +## 1.2.0 - Add top level key `triggers`. See [the docs](https://github.com/dart-lang/build/blob/master/build_config/README.md#triggers) diff --git a/build_config/pubspec.yaml b/build_config/pubspec.yaml index a5354f1994..1b68d75fa0 100644 --- a/build_config/pubspec.yaml +++ b/build_config/pubspec.yaml @@ -1,5 +1,5 @@ name: build_config -version: 1.2.0-wip +version: 1.2.0 description: >- Format definition and support for parsing `build.yaml` configuration. repository: https://github.com/dart-lang/build/tree/master/build_config diff --git a/build_resolvers/CHANGELOG.md b/build_resolvers/CHANGELOG.md index 68f75708af..b4ac8709c6 100644 --- a/build_resolvers/CHANGELOG.md +++ b/build_resolvers/CHANGELOG.md @@ -1,4 +1,4 @@ -## 3.0.2-wip +## 3.0.2 - Use `build` 3.0.2. - Use `build_runner` 2.7.0. diff --git a/build_resolvers/pubspec.yaml b/build_resolvers/pubspec.yaml index 58580fddb2..607a1bd513 100644 --- a/build_resolvers/pubspec.yaml +++ b/build_resolvers/pubspec.yaml @@ -1,5 +1,5 @@ name: build_resolvers -version: 3.0.2-wip +version: 3.0.2 description: Resolve Dart code in a Builder repository: https://github.com/dart-lang/build/tree/master/build_resolvers resolution: workspace @@ -10,8 +10,8 @@ environment: dependencies: analyzer: '>=7.4.0 <9.0.0' async: ^2.5.0 - build: '3.0.2-wip' - build_runner_core: '9.3.0-wip' + build: '3.0.2' + build_runner_core: '9.3.0' collection: ^1.17.0 package_config: ^2.0.0 path: ^1.8.0 diff --git a/build_runner/CHANGELOG.md b/build_runner/CHANGELOG.md index 7eef1ca4f4..1c3e8fcf74 100644 --- a/build_runner/CHANGELOG.md +++ b/build_runner/CHANGELOG.md @@ -1,4 +1,4 @@ -## 2.7.0-wip +## 2.7.0 - Performance: builders can choose to run only when "triggered". A builder runs only if triggered if the option `run_only_if_triggered` is `true`. Triggers diff --git a/build_runner/pubspec.yaml b/build_runner/pubspec.yaml index 0a38ccb54f..c2b5c2053b 100644 --- a/build_runner/pubspec.yaml +++ b/build_runner/pubspec.yaml @@ -1,5 +1,5 @@ name: build_runner -version: 2.7.0-wip +version: 2.7.0 description: A build system for Dart code generation and modular compilation. repository: https://github.com/dart-lang/build/tree/master/build_runner resolution: workspace @@ -15,10 +15,10 @@ platforms: dependencies: args: ^2.0.0 async: ^2.5.0 - build: '3.0.2-wip' - build_config: ">=1.2.0-wip <1.3.0" + build: '3.0.2' + build_config: ">=1.2.0 <1.3.0" build_daemon: ^4.0.0 - build_runner_core: '9.3.0-wip' + build_runner_core: '9.3.0' code_builder: ^4.2.0 crypto: ^3.0.0 dart_style: '>=2.3.7 <4.0.0' diff --git a/build_runner_core/CHANGELOG.md b/build_runner_core/CHANGELOG.md index 13bbc17544..e10bf13773 100644 --- a/build_runner_core/CHANGELOG.md +++ b/build_runner_core/CHANGELOG.md @@ -1,4 +1,4 @@ -## 9.3.0-wip +## 9.3.0 - Add support for build.yaml `triggers`. See `build_runner` 2.7.0 for usage. - Remove interactive prompts for whether to delete files. diff --git a/build_runner_core/pubspec.yaml b/build_runner_core/pubspec.yaml index 5f76338985..72de63e3fa 100644 --- a/build_runner_core/pubspec.yaml +++ b/build_runner_core/pubspec.yaml @@ -1,5 +1,5 @@ name: build_runner_core -version: 9.3.0-wip +version: 9.3.0 description: Core tools to organize the structure of a build and run Builders. repository: https://github.com/dart-lang/build/tree/master/build_runner_core resolution: workspace @@ -15,10 +15,10 @@ platforms: dependencies: analyzer: '>=6.9.0 <9.0.0' async: ^2.5.0 - build: '3.0.2-wip' - build_config: ^1.2.0-wip - build_resolvers: '3.0.2-wip' - build_runner: '2.7.0-wip' + build: '3.0.2' + build_config: ^1.2.0 + build_resolvers: '3.0.2' + build_runner: '2.7.0' built_collection: ^5.1.1 built_value: ^8.10.1 collection: ^1.15.0 diff --git a/build_test/CHANGELOG.md b/build_test/CHANGELOG.md index aa716a6e70..07e3317290 100644 --- a/build_test/CHANGELOG.md +++ b/build_test/CHANGELOG.md @@ -1,4 +1,4 @@ -## 3.3.2-wip +## 3.3.2 - Use `build` 3.0.2. - Use `build_runner` 2.7.0. diff --git a/build_test/pubspec.yaml b/build_test/pubspec.yaml index d82d22fe8b..fd32feecb1 100644 --- a/build_test/pubspec.yaml +++ b/build_test/pubspec.yaml @@ -1,6 +1,6 @@ name: build_test description: Utilities for writing unit tests of Builders. -version: 3.3.2-wip +version: 3.3.2 repository: https://github.com/dart-lang/build/tree/master/build_test resolution: workspace @@ -8,10 +8,10 @@ environment: sdk: ^3.7.0 dependencies: - build: '3.0.2-wip' + build: '3.0.2' build_config: ^1.0.0 - build_resolvers: '3.0.2-wip' - build_runner_core: '9.3.0-wip' + build_resolvers: '3.0.2' + build_runner_core: '9.3.0' crypto: ^3.0.0 glob: ^2.0.0 html: ^0.15.0 diff --git a/build_web_compilers/CHANGELOG.md b/build_web_compilers/CHANGELOG.md index 85e4276991..40c910e4b5 100644 --- a/build_web_compilers/CHANGELOG.md +++ b/build_web_compilers/CHANGELOG.md @@ -1,4 +1,4 @@ -## 4.2.2-wip +## 4.2.2 - Documentation revamp. diff --git a/build_web_compilers/pubspec.yaml b/build_web_compilers/pubspec.yaml index 66171ea101..02ad1defa5 100644 --- a/build_web_compilers/pubspec.yaml +++ b/build_web_compilers/pubspec.yaml @@ -1,5 +1,5 @@ name: build_web_compilers -version: 4.2.2-wip +version: 4.2.2 description: Builder implementations wrapping the dart2js and DDC compilers. repository: https://github.com/dart-lang/build/tree/master/build_web_compilers resolution: workspace