Merge pull request #21 from DrMarcII/master

Fix type error in multiplex.dart.
diff --git a/lib/multiplex.dart b/lib/multiplex.dart
index 2e89a4a..93aa0b6 100644
--- a/lib/multiplex.dart
+++ b/lib/multiplex.dart
@@ -124,7 +124,7 @@
     }
     _log.info('connecting to websocket: ${request.url}');
 
-    return ws.webSocketHandler((WebSocketChannel ws) async {
+    return ws.webSocketHandler((ws) async {
       var debugger = await _connections.putIfAbsent(path[2], () async {
         var tab = await chrome.getTab((tab) => tab.id == path[2]);
         return WipConnection.connect(tab.webSocketDebuggerUrl);
diff --git a/pubspec.yaml b/pubspec.yaml
index 4476634..6c99409 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: webkit_inspection_protocol
-version: 0.2.0
+version: 0.2.0+1
 description: A client for the Webkit Inspection Protocol (WIP).
 
 homepage: https://github.com/google/webkit_inspection_protocol.dart