Skip to content

Commit 95ec899

Browse files
committed
Fixes dependency issues reported in the issue tracker.
1 parent 6a1bc7d commit 95ec899

5 files changed

Lines changed: 19 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 2.2.3
2+
* Fixes dependency constraint issues.
3+
14
## 2.2.2
25
* Fixes [Issue #72: "please add flutter 3.10 full support and update package on pub"](https://github.com/dint-dev/universal_html/issues/72).
36

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ which is documented in the relevant files.
3535
In `pubspec.yaml`:
3636
```yaml
3737
dependencies:
38-
universal_html: ^2.2.2
38+
universal_html: ^2.2.3
3939
```
4040
4141
## 2. Use

pubspec.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: universal_html
2-
version: 2.2.2
2+
version: 2.2.3
33
description:
44
A 'dart:html' that works in all platforms, including Flutter and server-side.
55
Eases cross-platform development and HTML / XML processing.
@@ -9,17 +9,17 @@ environment:
99
sdk: '>=2.17.0 <4.0.0'
1010

1111
dependencies:
12-
async: ^2.5.0
13-
csslib: ^0.17.0
12+
async: ^2.11.0
13+
csslib: ^0.17.3
1414
charcode: ^1.2.0
15-
collection: ^1.15.0
16-
html: ^0.15.0
17-
meta: ^1.3.0
18-
source_span: ^1.8.0
19-
typed_data: ^1.3.0
20-
universal_io: ^2.2.0
15+
collection: ^1.17.1
16+
html: ^0.15.3
17+
meta: ^1.9.1
18+
source_span: ^1.9.1
19+
typed_data: ^1.3.2
20+
universal_io: ^2.2.2
2121

2222
dev_dependencies:
23-
lints: ^2.0.1
24-
stream_channel: ^2.1.0
25-
test: ^1.23.0
23+
lints: ^2.1.0
24+
stream_channel: ^2.1.1
25+
test: ^1.24.3

test_in_flutter/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ pubspec.lock
3131
/build/
3232

3333
# Web related
34-
lib/generated_plugin_registrant.dart
3534

3635
# Symbolication related
3736
app.*.symbols

test_in_flutter/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ dependencies:
1414
dev_dependencies:
1515
flutter_test:
1616
sdk: flutter
17-
lints: ^2.0.1
18-
stream_channel: ^2.1.0
19-
test: ^1.24.0
17+
lints: ^2.1.0
18+
stream_channel: ^2.1.1
19+
test: ^1.24.1

0 commit comments

Comments
 (0)