From b10d538268b9f89ebd8be10d73d345ea0e995044 Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Wed, 27 Mar 2019 10:24:59 -0700 Subject: [PATCH 1/2] Allow stream_channel version 2.x 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. --- CHANGELOG.md | 4 ++++ pubspec.yaml | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e2d662..24a9093 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/pubspec.yaml b/pubspec.yaml index 8c7773e..3f1b195 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,14 +2,14 @@ name: json_rpc_2 version: 2.0.9 author: Dart Team description: An implementation of the JSON-RPC 2.0 spec. -homepage: http://github.com/dart-lang/json_rpc_2 +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 From ab5f09811cc14a5a9498bb6090c4c8a8743db1fc Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Wed, 27 Mar 2019 11:19:48 -0700 Subject: [PATCH 2/2] Expand description --- pubspec.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 3f1b195..2708dd4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,8 @@ name: json_rpc_2 version: 2.0.9 author: Dart Team -description: An implementation of the JSON-RPC 2.0 spec. +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: