Allow stream_channel version 2.x (#111)

None of the planned breaking changes impact this package.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1cb66e0..077573c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.7.4+1
+
+* Allow `stream_channel` version 2.x
+
 ## 0.7.4
 
 * Allow passing `shared` parameter to underlying `HttpServer.bind` calls via
diff --git a/pubspec.yaml b/pubspec.yaml
index d71c776..8219143 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,12 +1,12 @@
 name: shelf
-version: 0.7.4
+version: 0.7.4+1
 description: >-
   A model for web server middleware that encourages composition and easy reuse
 author: Dart Team <misc@dartlang.org>
 homepage: https://github.com/dart-lang/shelf
 
 environment:
-  sdk: '>=2.0.0 <3.0.0'
+  sdk: ">=2.0.0 <3.0.0"
 
 dependencies:
   async: ^2.0.7
@@ -14,7 +14,7 @@
   http_parser: ^3.1.0
   path: ^1.0.0
   stack_trace: ^1.0.0
-  stream_channel: ^1.0.0
+  stream_channel: ">=1.0.0 <3.0.0"
 
 dev_dependencies:
   http: ^0.12.0