Skip to content

Release 2.5.1, 9.0.1. #4046

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## 2.5.1-wip
## 2.5.1

- Use `build_runner_core` 9.0.1.

## 2.5.0

Expand Down
6 changes: 3 additions & 3 deletions build/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build
version: 2.5.1-wip
version: 2.5.1
description: A package for authoring build_runner compatible code generators.
repository: https://github.com/dart-lang/build/tree/master/build
resolution: workspace
Expand All @@ -10,7 +10,7 @@ environment:
dependencies:
analyzer: '>=6.9.0 <8.0.0'
async: ^2.5.0
build_runner_core: '9.0.1-wip'
build_runner_core: '9.0.1'
built_collection: ^5.1.1
built_value: ^8.9.5
convert: ^3.0.0
Expand All @@ -24,7 +24,7 @@ dependencies:
pool: ^1.5.0

dev_dependencies:
build_resolvers: '2.5.1-wip'
build_resolvers: '2.5.1'
build_test: '3.0.0'
built_value_generator: ^8.9.5
dart_flutter_team_lints: ^3.1.0
Expand Down
4 changes: 3 additions & 1 deletion build_resolvers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## 2.5.1-wip
## 2.5.1

- Use `build_runner_core` 2.5.1.

## 2.5.0

Expand Down
6 changes: 3 additions & 3 deletions build_resolvers/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build_resolvers
version: 2.5.1-wip
version: 2.5.1
description: Resolve Dart code in a Builder
repository: https://github.com/dart-lang/build/tree/master/build_resolvers
resolution: workspace
Expand All @@ -10,8 +10,8 @@ environment:
dependencies:
analyzer: '>=6.9.0 <8.0.0'
async: ^2.5.0
build: '2.5.1-wip'
build_runner_core: '9.0.1-wip'
build: '2.5.1'
build_runner_core: '9.0.1'
collection: ^1.17.0
convert: ^3.1.1
crypto: ^3.0.0
Expand Down
3 changes: 2 additions & 1 deletion build_runner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 2.5.1-wip
## 2.5.1

- Don't log stack traces for subclasses of `Exception`.
- Bug fix: don't run builders with multiple outputs once per output.

## 2.5.0

Expand Down
8 changes: 4 additions & 4 deletions build_runner/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build_runner
version: 2.5.1-wip
version: 2.5.1
description: A build system for Dart code generation and modular compilation.
repository: https://github.com/dart-lang/build/tree/master/build_runner
resolution: workspace
Expand All @@ -16,11 +16,11 @@ dependencies:
analyzer: '>=4.4.0 <8.0.0'
args: ^2.0.0
async: ^2.5.0
build: '2.5.1-wip'
build: '2.5.1'
build_config: ">=1.1.0 <1.2.0"
build_daemon: ^4.0.0
build_resolvers: '2.5.1-wip'
build_runner_core: '9.0.1-wip'
build_resolvers: '2.5.1'
build_runner_core: '9.0.1'
code_builder: ^4.2.0
collection: ^1.15.0
crypto: ^3.0.0
Expand Down
2 changes: 1 addition & 1 deletion build_runner_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 9.0.1-wip
## 9.0.1

- Don't log stack traces for subclasses of `Exception`.
- Bug fix: don't run builders with multiple outputs once per output.
Expand Down
8 changes: 4 additions & 4 deletions build_runner_core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build_runner_core
version: 9.0.1-wip
version: 9.0.1
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
Expand All @@ -15,10 +15,10 @@ platforms:
dependencies:
analyzer: '>=6.9.0 <8.0.0'
async: ^2.5.0
build: '2.5.1-wip'
build: '2.5.1'
build_config: ^1.0.0
build_resolvers: '2.5.1-wip'
build_runner: '2.5.1-wip'
build_resolvers: '2.5.1'
build_runner: '2.5.1'
built_collection: ^5.1.1
built_value: ^8.10.1
collection: ^1.15.0
Expand Down
Loading