Fixes to readme and pubspec, prepare for 0.13.4+1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index adf3929..14eb41c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.13.4+1
+
+* Fixes to readme and pubspec.
+
 ## 0.13.4
 
 * Require Dart 2.0 stable.
diff --git a/README.md b/README.md
index 27db3ce..21cc312 100644
--- a/README.md
+++ b/README.md
@@ -1,31 +1,14 @@
-html5 parser in dart
-====================
+This is a pure [Dart][dart] [html5 parser][html5parse].
+It's a port of [html5lib](https://github.com/html5lib/html5lib-python) from 
+Python. 
+Since it's 100% Dart you can use it safely from a script or server side app.
 
-This is a pure [Dart][dart] [html5 parser][html5parse]. It's a port of
-[html5lib](https://github.com/html5lib/html5lib-python) from Python. Since it's 100%
-Dart you can use it safely from a script or server side app.
+(Formerly known as `package:html5lib`.)
 
-Eventually the parse tree API will be compatible with [dart:html][d_html], so
-the same code will work on the client and the server.
-
-(Formerly known as _html5lib_.)
-
-Installation
-------------
-
-Add this to your `pubspec.yaml` (or create it):
-```yaml
-dependencies:
-  html: any
-```
-Then run the [Pub Package Manager][pub] (comes with the Dart SDK):
-
-    pub install
-
-Usage
------
+# Usage
 
 Parsing HTML is easy!
+
 ```dart
 import 'package:html/parser.dart' show parse;
 import 'package:html/dom.dart';
@@ -41,15 +24,5 @@
 There's also `parseFragment` for parsing a document fragment, and `HtmlParser`
 if you want more low level control.
 
-Running Tests
--------------
-
-```bash
-./test/run.sh
-```
-
-[dart]: http://www.dartlang.org/
+[dart]: https://www.dartlang.org/
 [html5parse]: http://dev.w3.org/html5/spec/parsing.html
-[d_html]: http://api.dartlang.org/docs/continuous/dart_html.html
-[files]: http://html5lib.googlecode.com/hg/python/html5lib/
-[pub]: http://www.dartlang.org/docs/pub-package-manager/
diff --git a/pubspec.yaml b/pubspec.yaml
index 3a43cda..b3cf488 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,7 +1,7 @@
 name: html
-version: 0.13.4-dev
+version: 0.13.4+1
 
-description: A library for working with HTML documents.
+description: APIs for parsing and manipulating HTML content outside the browser.
 author: Dart Team <misc@dartlang.org>
 homepage: https://github.com/dart-lang/html