Declare support for async 2.0.0 (#10)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8d44b21..a1cf9ed 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 1.6.2
+
+* Declare support for `async` 2.0.0.
+
 ## 1.6.1
 
 * Fix the type of `StreamChannel.transform()`. This previously inverted the
diff --git a/pubspec.yaml b/pubspec.yaml
index 2d86362..fee6433 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,12 +1,12 @@
 name: stream_channel
-version: 1.6.2-dev
+version: 1.6.2
 description: An abstraction for two-way communication channels.
 author: Dart Team <misc@dartlang.org>
 homepage: https://github.com/dart-lang/stream_channel
 environment:
   sdk: '>=1.21.0 <2.0.0'
 dependencies:
-  async: '^1.11.0'
+  async: '>=1.11.0 <3.0.0'
   stack_trace: '^1.0.0'
 dev_dependencies:
   test: '^0.12.18'