Skip to content
This repository was archived by the owner on Nov 1, 2024. It is now read-only.

Commit b3b820b

Browse files
authored
widen the dependency on 'package:csslib' (#217)
* widen the dependency on 'package:csslib' * update CI * Update CHANGELOG.md
1 parent 92eacab commit b3b820b

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/test-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
fail-fast: false
3333
matrix:
3434
os: [ubuntu-latest]
35-
sdk: [2.17.0, dev]
35+
sdk: [2.19.0, stable, dev]
3636
steps:
3737
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
3838
- uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.15.4
2+
3+
- Widen the dependency on `package:csslib`.
4+
- Require Dart `2.19`.
5+
16
## 0.15.3
27

38
- Added package topics to the pubspec file.

lib/src/css_class_set.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
// TODO(jmesserly): everything in this file is copied straight from "dart:html".
6-
library html.dom.src;
76

87
import 'dart:collection';
98

lib/src/tokenizer.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
library tokenizer;
2-
31
import 'dart:collection';
42

53
import 'package:html/parser.dart' show HtmlParser;

pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: html
2-
version: 0.15.3
2+
version: 0.15.4
33
description: APIs for parsing and manipulating HTML content outside the browser.
44
repository: https://github.com/dart-lang/html
55

@@ -8,13 +8,13 @@ topics:
88
- web
99

1010
environment:
11-
sdk: '>=2.17.0 <3.0.0'
11+
sdk: '>=2.19.0 <4.0.0'
1212

1313
dependencies:
14-
csslib: ^0.17.0
14+
csslib: '>=0.17.0 <2.0.0'
1515
source_span: ^1.8.0
1616

1717
dev_dependencies:
18-
dart_flutter_team_lints: ^0.1.0
18+
dart_flutter_team_lints: ^1.0.0
1919
path: ^1.8.0
2020
test: ^1.16.0

test/query_selector_test.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
library query_selector_test;
2-
31
import 'package:html/dom.dart';
42
import 'package:test/test.dart';
53

0 commit comments

Comments
 (0)