Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
Allow stream_channel version 2.x (#38)
Browse files Browse the repository at this point in the history
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
natebosch authored Mar 27, 2019
1 parent d54cc3e commit 3954293
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
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
Expand Down
11 changes: 6 additions & 5 deletions pubspec.yaml
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

0 comments on commit 3954293

Please sign in to comment.