Skip to content

Commit

Permalink
Allow stream_channel version 2.x (dart-lang#48)
Browse files Browse the repository at this point in the history
None of the breaking changes impact this package or it's exposed API.
  • Loading branch information
natebosch authored Mar 27, 2019
1 parent 9f94033 commit aaa5472
Show file tree
Hide file tree
Showing 2 changed files with 9 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 @@
## 1.0.12

* Allow `stream_channel` version 2.x

## 1.0.11

* Fixed description in pubspec.
Expand Down
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: web_socket_channel
version: 1.0.11
version: 1.0.12

description: >-
StreamChannel wrappers for WebSockets. Provides a cross-platform
Expand All @@ -9,12 +9,12 @@ author: Dart Team <misc@dartlang.org>
homepage: https://github.com/dart-lang/web_socket_channel

environment:
sdk: '>=2.0.0-dev.23.0 <3.0.0'
sdk: ">=2.0.0 <3.0.0"

dependencies:
async: '>=1.3.0 <3.0.0'
crypto: '>=0.9.2 <3.0.0'
stream_channel: ^1.2.0
async: ">=1.3.0 <3.0.0"
crypto: ">=0.9.2 <3.0.0"
stream_channel: ">=1.2.0 <3.0.0"

dev_dependencies:
pedantic:
Expand Down

0 comments on commit aaa5472

Please sign in to comment.