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

Commit

Permalink
widen the dependency on 'package:csslib' (#217)
Browse files Browse the repository at this point in the history
* widen the dependency on 'package:csslib'

* update CI

* Update CHANGELOG.md
  • Loading branch information
devoncarew authored Jun 7, 2023
1 parent 92eacab commit b3b820b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
sdk: [2.17.0, dev]
sdk: [2.19.0, stable, dev]
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.15.4

- Widen the dependency on `package:csslib`.
- Require Dart `2.19`.

## 0.15.3

- Added package topics to the pubspec file.
Expand Down
1 change: 0 additions & 1 deletion lib/src/css_class_set.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// BSD-style license that can be found in the LICENSE file.

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

import 'dart:collection';

Expand Down
2 changes: 0 additions & 2 deletions lib/src/tokenizer.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
library tokenizer;

import 'dart:collection';

import 'package:html/parser.dart' show HtmlParser;
Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: html
version: 0.15.3
version: 0.15.4
description: APIs for parsing and manipulating HTML content outside the browser.
repository: https://github.com/dart-lang/html

Expand All @@ -8,13 +8,13 @@ topics:
- web

environment:
sdk: '>=2.17.0 <3.0.0'
sdk: '>=2.19.0 <4.0.0'

dependencies:
csslib: ^0.17.0
csslib: '>=0.17.0 <2.0.0'
source_span: ^1.8.0

dev_dependencies:
dart_flutter_team_lints: ^0.1.0
dart_flutter_team_lints: ^1.0.0
path: ^1.8.0
test: ^1.16.0
2 changes: 0 additions & 2 deletions test/query_selector_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
library query_selector_test;

import 'package:html/dom.dart';
import 'package:test/test.dart';

Expand Down

0 comments on commit b3b820b

Please sign in to comment.