Skip to content

Commit 1ab212a

Browse files
authored
Support latest pkg:web, prepare release (dart-archive/web_socket_channel#377)
1 parent 55ec98c commit 1ab212a

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

pkgs/web_socket_channel/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
## 3.0.1-wip
1+
## 3.0.1
22

33
- Remove unnecessary `dependency_overrides`.
44
- Remove obsolete documentation for `WebSocketChannel.new`.
5+
- Update package `web: '>=0.5.0 <2.0.0'`.
56

67
## 3.0.0
78

pkgs/web_socket_channel/lib/adapter_web_socket_channel.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ class AdapterWebSocketChannel extends StreamChannelMixin
3030
/// The close code set by the local user.
3131
///
3232
/// To ensure proper ordering, this is stored until we get a done event on
33-
/// [_controller.local.stream].
33+
/// [StreamChannelController.local]`.stream`.
3434
int? _localCloseCode;
3535

3636
/// The close reason set by the local user.
3737
///
3838
/// To ensure proper ordering, this is stored until we get a done event on
39-
/// [_controller.local.stream].
39+
/// [StreamChannelController.local]`.stream`.
4040
String? _localCloseReason;
4141

4242
/// Completer for [ready].

pkgs/web_socket_channel/lib/html.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ class HtmlWebSocketChannel extends StreamChannelMixin
3737
/// The close code set by the local user.
3838
///
3939
/// To ensure proper ordering, this is stored until we get a done event on
40-
/// [_controller.local.stream].
40+
/// [StreamChannelController.local]`.stream`.
4141
int? _localCloseCode;
4242

4343
/// The close reason set by the local user.
4444
///
4545
/// To ensure proper ordering, this is stored until we get a done event on
46-
/// [_controller.local.stream].
46+
/// [StreamChannelController.local]`.stream`.
4747
String? _localCloseReason;
4848

4949
/// Completer for [ready].

pkgs/web_socket_channel/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: web_socket_channel
2-
version: 3.0.1-wip
2+
version: 3.0.1
33
description: >-
44
StreamChannel wrappers for WebSockets. Provides a cross-platform
55
WebSocketChannel API, a cross-platform implementation of that API that
@@ -13,7 +13,7 @@ dependencies:
1313
async: ^2.5.0
1414
crypto: ^3.0.0
1515
stream_channel: ^2.1.0
16-
web: ^0.5.0
16+
web: '>=0.5.0 <2.0.0'
1717
web_socket: ^0.1.5
1818

1919
dev_dependencies:

0 commit comments

Comments
 (0)