This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow stream_channel version 2.x (#38)
None of the planned breaking changes impact this package. - Fix constraint style. - Remove lower bound on `stack_trace` since versions before `1.0.0` didn't support the Dart 2 SDK anyway. - Expand description.
- Loading branch information
Showing
2 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 2.0.9 | ||
|
||
* Allow `stream_channel` version 2.x | ||
|
||
## 2.0.8 | ||
|
||
* Updated SDK version to 2.0.0-dev.17.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
name: json_rpc_2 | ||
version: 2.0.9 | ||
author: Dart Team <[email protected]> | ||
description: An implementation of the JSON-RPC 2.0 spec. | ||
homepage: http://github.com/dart-lang/json_rpc_2 | ||
description: >- | ||
Utilities to write a client or server using the JSON-RPC 2.0 spec. | ||
homepage: https://github.com/dart-lang/json_rpc_2 | ||
|
||
environment: | ||
sdk: ">=2.0.0-dev.17.0 <3.0.0" | ||
sdk: ">=2.0.0 <3.0.0" | ||
|
||
dependencies: | ||
stack_trace: '>=0.9.1 <2.0.0' | ||
stream_channel: '^1.1.0' | ||
stack_trace: ^1.0.0 | ||
stream_channel: ">=1.1.0 <3.0.0" | ||
|
||
dev_dependencies: | ||
test: ^1.0.0 |