Skip to content

Commit

Permalink
allow the 3.5.x Dart SDK (#3660)
Browse files Browse the repository at this point in the history
* allow the 3.5.x Dart SDK

* ignore https://bazel.build links in the markdown checker
  • Loading branch information
jakemac53 committed Mar 26, 2024
1 parent 21487ce commit dc0f1d9
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
4 changes: 4 additions & 0 deletions build_modules/CHANGELOG.md
@@ -1,3 +1,7 @@
## 5.0.8

- Allow version 3.5.x of the Dart SDK.

## 5.0.7

- Fixes to support package:js version 0.7.0.
Expand Down
4 changes: 2 additions & 2 deletions build_modules/pubspec.yaml
@@ -1,12 +1,12 @@
name: build_modules
version: 5.0.7
version: 5.0.8
description: >-
Builders to analyze and split Dart code into individually compilable modules
based on imports.
repository: https://github.com/dart-lang/build/tree/master/build_modules

environment:
sdk: '>=3.0.0 <3.5.0'
sdk: '>=3.0.0 <3.6.0'

dependencies:
analyzer: '>=5.1.0 <7.0.0'
Expand Down
4 changes: 4 additions & 0 deletions build_web_compilers/CHANGELOG.md
@@ -1,3 +1,7 @@
## 4.0.10

- Allow version 3.5.x of the Dart SDK.

## 4.0.9

- Support latest version of `package:js`.
Expand Down
4 changes: 2 additions & 2 deletions build_web_compilers/pubspec.yaml
@@ -1,10 +1,10 @@
name: build_web_compilers
version: 4.0.9
version: 4.0.10
description: Builder implementations wrapping the dart2js and DDC compilers.
repository: https://github.com/dart-lang/build/tree/master/build_web_compilers

environment:
sdk: '>=3.1.0 <3.5.0'
sdk: '>=3.1.0 <3.6.0'

dependencies:
analyzer: '>=5.1.0 <7.0.0'
Expand Down
3 changes: 3 additions & 0 deletions mlc_config.json
Expand Up @@ -2,6 +2,9 @@
"ignorePatterns": [
{
"pattern": "^https://stackoverflow.com"
},
{
"pattern": "^https://bazel.build"
}
]
}

0 comments on commit dc0f1d9

Please sign in to comment.