Skip to content

Commit dc0f1d9

Browse files
authored
allow the 3.5.x Dart SDK (#3660)
* allow the 3.5.x Dart SDK * ignore https://bazel.build links in the markdown checker
1 parent 21487ce commit dc0f1d9

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

build_modules/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 5.0.8
2+
3+
- Allow version 3.5.x of the Dart SDK.
4+
15
## 5.0.7
26

37
- Fixes to support package:js version 0.7.0.

build_modules/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: build_modules
2-
version: 5.0.7
2+
version: 5.0.8
33
description: >-
44
Builders to analyze and split Dart code into individually compilable modules
55
based on imports.
66
repository: https://github.com/dart-lang/build/tree/master/build_modules
77

88
environment:
9-
sdk: '>=3.0.0 <3.5.0'
9+
sdk: '>=3.0.0 <3.6.0'
1010

1111
dependencies:
1212
analyzer: '>=5.1.0 <7.0.0'

build_web_compilers/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 4.0.10
2+
3+
- Allow version 3.5.x of the Dart SDK.
4+
15
## 4.0.9
26

37
- Support latest version of `package:js`.

build_web_compilers/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: build_web_compilers
2-
version: 4.0.9
2+
version: 4.0.10
33
description: Builder implementations wrapping the dart2js and DDC compilers.
44
repository: https://github.com/dart-lang/build/tree/master/build_web_compilers
55

66
environment:
7-
sdk: '>=3.1.0 <3.5.0'
7+
sdk: '>=3.1.0 <3.6.0'
88

99
dependencies:
1010
analyzer: '>=5.1.0 <7.0.0'

mlc_config.json

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"ignorePatterns": [
33
{
44
"pattern": "^https://stackoverflow.com"
5+
},
6+
{
7+
"pattern": "^https://bazel.build"
58
}
69
]
710
}

0 commit comments

Comments
 (0)