publish 0.8.0
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a813b51..35746c6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,9 @@
 ## 0.8.0
+* [bug] fix annotation shown as raw HTML in constructors
+* [bug] fix missing return type when Future
+* [enhancement] do not show "Not documented." message for members without doc comments
+* [enhancement] show constructors before properties in right side bar
+* [enhancement] sort names with embedded integers lexicograpically
 * **BREAKING** `initGenerators` is now async. It returns `Future<List<Generator>>`.
 * **BREAKING** `markdown_processor.dart` and `resource_loader.dart` are no
   longer exposed as public libraries.
@@ -7,7 +12,7 @@
   You can access the `Generator` class by importing `dartdoc.dart`.
 
 ## 0.7.4
-* [bug] In class documentation, move constructors before instance properties.
+* [bug] In class documentation, move constructors before instance properties
 * [bug] fix property pages to show documentation if not a setter/getter
 * [bug] show indented code blocks in comments as code 
 
diff --git a/lib/dartdoc.dart b/lib/dartdoc.dart
index 53d71f0..ba3b802 100644
--- a/lib/dartdoc.dart
+++ b/lib/dartdoc.dart
@@ -38,7 +38,7 @@
 
 const String name = 'dartdoc';
 // Update when pubspec version changes.
-const String version = '0.8.0-dev';
+const String version = '0.8.0';
 
 final String defaultOutDir = p.join('doc', 'api');
 
diff --git a/pubspec.yaml b/pubspec.yaml
index 0dcd487..d1b32d3 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,6 +1,6 @@
 name: dartdoc
 # Also update the `version` field in lib/dartdoc.dart.
-version: 0.8.0-dev
+version: 0.8.0
 author: Dart Team <misc@dartlang.org>
 description: A documentation generator for Dart.
 homepage: https://github.com/dart-lang/dartdoc