Fix readme
diff --git a/README.md b/README.md
index 8a71da4..9bbb2e5 100644
--- a/README.md
+++ b/README.md
@@ -1,17 +1,9 @@
-CSS parser library for Dart
-==========================
+A Dart [CSS](https://developer.mozilla.org/en-US/docs/Web/CSS) parser.
 
-This is a [CSS](https://developer.mozilla.org/en-US/docs/Web/CSS) parser written entirely in [Dart][dart].
-It can be used in the client/server/command line.
-
-This package is installed with [Pub][pub], see:
-[install instructions](https://pub.dartlang.org/packages/csslib#installing)
-for this package.
-
-Usage
------
+## Usage
 
 Parsing CSS is easy!
+
 ```dart
 import 'package:csslib/parser.dart';
 
@@ -22,22 +14,4 @@
 }
 ```
 
-You can pass a String or list of bytes to `parse`.
-
-
-Running Tests
--------------
-
-Basic tests can be found in this repository:
-```bash
-pub run test
-```
-
-The full CSS test suite can be found in https://github.com/dart-lang/csslib-test-suite
-```bash
-cd ../csslib-test-suite
-./run.sh
-```
-
-[dart]: http://www.dartlang.org/
-[pub]: http://www.dartlang.org/docs/pub-package-manager/
+You can pass a `String` or `List<int>` to `parse`.
diff --git a/pubspec.yaml b/pubspec.yaml
index b2802ba..1459b6a 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: csslib
-version: 0.15.0
+version: 0.15.1-dev
 
 description: A library for parsing CSS.
 author: Dart Team <misc@dartlang.org>