Skip to content
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

specify platform support in the pubspec #3386

Merged
merged 3 commits into from Oct 18, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions build_runner/CHANGELOG.md
@@ -1,3 +1,7 @@
## 2.3.2

- Add supported platforms to pubspec.

## 2.3.1

- Upgrade to `frontend_service_client` version 3.
Expand Down
7 changes: 6 additions & 1 deletion build_runner/pubspec.yaml
@@ -1,11 +1,16 @@
name: build_runner
version: 2.3.1
version: 2.3.2
description: A build system for Dart code generation and modular compilation.
repository: https://github.com/dart-lang/build/tree/master/build_runner

environment:
sdk: ">=2.14.0 <3.0.0"

platforms:
linux:
windows:
macos:

dependencies:
args: ^2.0.0
async: ^2.5.0
Expand Down
4 changes: 4 additions & 0 deletions build_runner_core/CHANGELOG.md
@@ -1,3 +1,7 @@
## 7.2.6

- Add supported platforms to pubspec.

## 7.2.5

- Expand pubspec description.
Expand Down
7 changes: 6 additions & 1 deletion build_runner_core/pubspec.yaml
@@ -1,11 +1,16 @@
name: build_runner_core
version: 7.2.5
version: 7.2.6
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

environment:
sdk: ">=2.17.0 <3.0.0"

platforms:
linux:
windows:
macos:

dependencies:
async: ^2.5.0
build: ^2.1.0
Expand Down