Upgraded library

This commit is contained in:
thomashii@dukefirehawk.com 2023-09-23 11:02:18 +08:00
parent 819e030a32
commit f4a7b46cbc
6 changed files with 14 additions and 6 deletions

View file

@ -1,5 +1,9 @@
# Change Log
## 6.1.0
* Upgraded `uuid` to 4.0.0
## 6.0.0
* Require Dart >= 3.0

View file

@ -1,5 +1,5 @@
name: belatuk_pub_sub
version: 6.0.0
version: 6.1.0
description: Keep application instances in sync with a simple pub/sub API.
homepage: https://github.com/dart-backend/belatuk-common-utilities/tree/main/packages/pub_sub
environment:
@ -7,7 +7,7 @@ environment:
dependencies:
json_rpc_2: ^3.0.0
stream_channel: ^2.1.0
uuid: ^3.0.4
uuid: ^4.0.0
collection: ^1.17.0
dev_dependencies:
lints: ^2.0.0

View file

@ -157,7 +157,7 @@ class _SocketStreamChannel extends StreamChannelMixin<List<int>> {
Stream<List<int>> get stream => socket;
}
class _SocketSink extends StreamSink<List<int>> {
class _SocketSink implements StreamSink<List<int>> {
final Socket socket;
_SocketSink(this.socket);

View file

@ -1,5 +1,9 @@
# Change Log
## 6.1.0
* Updated `file` to 7.0.0
## 6.0.0
* Require Dart >= 3.0

View file

@ -1,5 +1,5 @@
name: belatuk_range_header
version: 6.0.0
version: 6.1.0
description: Range header parser for Dart. Beyond parsing, a stream transformer is included.
homepage: https://github.com/dart-backend/belatuk-common-utilities/tree/main/packages/range_header
environment:
@ -11,7 +11,7 @@ dependencies:
source_span: ^1.10.0
string_scanner: ^1.2.0
dev_dependencies:
file: ^6.1.0
file: ^7.0.0
http_parser: ^4.0.0
logging: ^1.0.1
test: ^1.24.0