Merge pull request #3 from tvolkert/docs

Minor doc updates
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d5f8f48..104fc67 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+#### 1.0.2
+
+* Minor doc updates
+
 #### 1.0.1
 
 * Added const constructors for `Platform` and `LocalPlatform`
diff --git a/README.md b/README.md
index 35f6972..00f0773 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
 # Platform
 
-[![Build Status -](https://travis-ci.org/tvolkert/platform.svg?branch=master)](https://travis-ci.org/tvolkert/platform)
-[![Coverage Status -](https://coveralls.io/repos/github/tvolkert/platform/badge.svg?branch=master)](https://coveralls.io/github/tvolkert/platform?branch=master)
+[![Build Status -](https://travis-ci.org/google/platform.dart.svg?branch=master)](https://travis-ci.org/google/platform.dart)
+[![Coverage Status -](https://coveralls.io/repos/github/google/platform.dart/badge.svg?branch=master)](https://coveralls.io/github/google/platform.dart?branch=master)
 
 A generic platform abstraction for Dart.
 
@@ -11,7 +11,3 @@
 `package:platform` provides a lightweight wrapper around the static `Platform`
 properties that exist in `dart:io`. However, it uses instance properties rather
 than static properties, making it possible to mock out in tests.
-
-### Disclaimer
-
-This is not an official Google product.
diff --git a/lib/platform.dart b/lib/platform.dart
index 4d74f32..2770219 100644
--- a/lib/platform.dart
+++ b/lib/platform.dart
@@ -2,6 +2,7 @@
 // for details. All rights reserved. Use of this source code is governed by a
 // BSD-style license that can be found in the LICENSE file.
 
+/// Core interfaces & classes.
 export 'src/interface/local_platform.dart';
 export 'src/interface/platform.dart';
 export 'src/testing/fake_platform.dart';
diff --git a/pubspec.yaml b/pubspec.yaml
index 8d45807..a5e3575 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,9 +1,9 @@
 name: platform
-version: 1.0.1
+version: 1.0.2
 authors:
 - Todd Volkert <tvolkert@google.com>
 description: A pluggable, mockable platform abstraction for Dart.
-homepage: https://github.com/tvolkert/platform
+homepage: https://github.com/google/platform.dart
 
 dev_dependencies:
   test: ^0.12.10