Skip to content

Commit aa89301

Browse files
authored
Prepare for release. (#4146)
1 parent 733f735 commit aa89301

File tree

14 files changed

+27
-27
lines changed

14 files changed

+27
-27
lines changed

build/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 3.0.2-wip
1+
## 3.0.2
22

33
- Use `build_runner_core` 9.3.0.
44
- Documentation revamp.

build/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: build
2-
version: 3.0.2-wip
2+
version: 3.0.2
33
description: A package for authoring build_runner compatible code generators.
44
repository: https://github.com/dart-lang/build/tree/master/build
55
resolution: workspace
@@ -10,7 +10,7 @@ environment:
1010
dependencies:
1111
analyzer: '>=7.4.0 <9.0.0'
1212
async: ^2.5.0
13-
build_runner_core: '9.3.0-wip'
13+
build_runner_core: '9.3.0'
1414
built_collection: ^5.1.1
1515
built_value: ^8.9.5
1616
convert: ^3.0.0

build_config/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 1.2.0-wip
1+
## 1.2.0
22

33
- Add top level key `triggers`. See
44
[the docs](https://github.com/dart-lang/build/blob/master/build_config/README.md#triggers)

build_config/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: build_config
2-
version: 1.2.0-wip
2+
version: 1.2.0
33
description: >-
44
Format definition and support for parsing `build.yaml` configuration.
55
repository: https://github.com/dart-lang/build/tree/master/build_config

build_resolvers/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 3.0.2-wip
1+
## 3.0.2
22

33
- Use `build` 3.0.2.
44
- Use `build_runner` 2.7.0.

build_resolvers/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: build_resolvers
2-
version: 3.0.2-wip
2+
version: 3.0.2
33
description: Resolve Dart code in a Builder
44
repository: https://github.com/dart-lang/build/tree/master/build_resolvers
55
resolution: workspace
@@ -10,8 +10,8 @@ environment:
1010
dependencies:
1111
analyzer: '>=7.4.0 <9.0.0'
1212
async: ^2.5.0
13-
build: '3.0.2-wip'
14-
build_runner_core: '9.3.0-wip'
13+
build: '3.0.2'
14+
build_runner_core: '9.3.0'
1515
collection: ^1.17.0
1616
package_config: ^2.0.0
1717
path: ^1.8.0

build_runner/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 2.7.0-wip
1+
## 2.7.0
22

33
- Performance: builders can choose to run only when "triggered". A builder runs
44
only if triggered if the option `run_only_if_triggered` is `true`. Triggers

build_runner/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: build_runner
2-
version: 2.7.0-wip
2+
version: 2.7.0
33
description: A build system for Dart code generation and modular compilation.
44
repository: https://github.com/dart-lang/build/tree/master/build_runner
55
resolution: workspace
@@ -15,10 +15,10 @@ platforms:
1515
dependencies:
1616
args: ^2.0.0
1717
async: ^2.5.0
18-
build: '3.0.2-wip'
19-
build_config: ">=1.2.0-wip <1.3.0"
18+
build: '3.0.2'
19+
build_config: ">=1.2.0 <1.3.0"
2020
build_daemon: ^4.0.0
21-
build_runner_core: '9.3.0-wip'
21+
build_runner_core: '9.3.0'
2222
code_builder: ^4.2.0
2323
crypto: ^3.0.0
2424
dart_style: '>=2.3.7 <4.0.0'

build_runner_core/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 9.3.0-wip
1+
## 9.3.0
22

33
- Add support for build.yaml `triggers`. See `build_runner` 2.7.0 for usage.
44
- Remove interactive prompts for whether to delete files.

build_runner_core/pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: build_runner_core
2-
version: 9.3.0-wip
2+
version: 9.3.0
33
description: Core tools to organize the structure of a build and run Builders.
44
repository: https://github.com/dart-lang/build/tree/master/build_runner_core
55
resolution: workspace
@@ -15,10 +15,10 @@ platforms:
1515
dependencies:
1616
analyzer: '>=6.9.0 <9.0.0'
1717
async: ^2.5.0
18-
build: '3.0.2-wip'
19-
build_config: ^1.2.0-wip
20-
build_resolvers: '3.0.2-wip'
21-
build_runner: '2.7.0-wip'
18+
build: '3.0.2'
19+
build_config: ^1.2.0
20+
build_resolvers: '3.0.2'
21+
build_runner: '2.7.0'
2222
built_collection: ^5.1.1
2323
built_value: ^8.10.1
2424
collection: ^1.15.0

0 commit comments

Comments
 (0)