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

@ -3,7 +3,7 @@ Primary Authors
* __[Thomas Hii](dukefirehawk.apps@gmail.com)__ * __[Thomas Hii](dukefirehawk.apps@gmail.com)__
Thomas is the current maintainer of the code base. He has refactored and migrated the Thomas is the current maintainer of the code base. He has refactored and migrated the
code base to support NNBD. code base to support NNBD.
* __[Tobe O](thosakwe@gmail.com)__ * __[Tobe O](thosakwe@gmail.com)__

View file

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

View file

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

View file

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

View file

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

View file

@ -1,5 +1,5 @@
name: belatuk_range_header 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. 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 homepage: https://github.com/dart-backend/belatuk-common-utilities/tree/main/packages/range_header
environment: environment:
@ -11,7 +11,7 @@ dependencies:
source_span: ^1.10.0 source_span: ^1.10.0
string_scanner: ^1.2.0 string_scanner: ^1.2.0
dev_dependencies: dev_dependencies:
file: ^6.1.0 file: ^7.0.0
http_parser: ^4.0.0 http_parser: ^4.0.0
logging: ^1.0.1 logging: ^1.0.1
test: ^1.24.0 test: ^1.24.0