Merge pull request #71 from DrMarcII/master

Add missing copyright notices.
diff --git a/lib/html.dart b/lib/html.dart
index 5993842..f5f9e6e 100644
--- a/lib/html.dart
+++ b/lib/html.dart
@@ -1,3 +1,17 @@
+// Copyright 2015 Google Inc. All Rights Reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//    http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
 library webdriver.html;
 
 import 'dart:async' show Future;
diff --git a/lib/io.dart b/lib/io.dart
index 5f7933f..d20dceb 100644
--- a/lib/io.dart
+++ b/lib/io.dart
@@ -1,3 +1,17 @@
+// Copyright 2015 Google Inc. All Rights Reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//    http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
 library webdriver.io;
 
 import 'dart:async' show Future;
diff --git a/lib/src/command_processor.dart b/lib/src/command_processor.dart
index 53a804f..a52fdc4 100644
--- a/lib/src/command_processor.dart
+++ b/lib/src/command_processor.dart
@@ -1,3 +1,17 @@
+// Copyright 2015 Google Inc. All Rights Reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//    http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
 library webdriver.command_processor;
 
 import 'dart:async';
diff --git a/pubspec.yaml b/pubspec.yaml
index 31a3a71..903413d 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,6 +1,6 @@
 name: webdriver
-version: 0.10.0-pre.5
-author: Google, Inc.
+version: 0.10.0-pre.6
+author: Marc Fisher II <fisherii@google.com>
 description: >
   Provides WebDriver bindings for Dart. These use the WebDriver JSON interface,
   and as such, require the use of the WebDriver remote server.
@@ -9,8 +9,7 @@
   sdk: '>=1.9.0 <2.0.0'
 dependencies:
   crypto: '^0.9.0'
-  matcher: '^0.12.0-alpha.0'
+  matcher: '^0.12.0'
 dev_dependencies:
   path: '^1.3.5'
-  test: '^0.12.0-rc.1'
-
+  test: '^0.12.0'
diff --git a/test/io_test.dart b/test/io_test.dart
index aab433d..68feb35 100644
--- a/test/io_test.dart
+++ b/test/io_test.dart
@@ -11,6 +11,7 @@
 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 // See the License for the specific language governing permissions and
 // limitations under the License.
+
 @TestOn("vm")
 library webdriver.io_test;