Prepare for 0.14.0 (#1502)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index dc35d40..aee239e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,19 @@
+## 0.14.0
+* Fix multiple issues with properties and top level variables in cases
+of split inheritance (#1394, #1116)
+* Fix issue with generation of 'null' value enum fields (#1445)
+* Fix multiple issues with nodoc handling (#1352, #1337)
+* Use highlight js for code blocks and fix colors (#1487)
+* Eliminate excessive stack depth in link checker
+* Use preferredClass in more cases to disambiguate doc links
+* Add basic support and tests for MultiplyInheritedExecutableElements (#1478)
+
+## 0.13.0+3
+* Add support for GenericFunctionTypeElementImpl (#1495)
+
+## 0.13.0+2
+* Allow null annotation elements (#1491)
+
 ## 0.13.0+1
 * Remove unnecessary dependency on meta.
 * Drop --force from pub publish arguments to avoid publishing more broken
diff --git a/lib/dartdoc.dart b/lib/dartdoc.dart
index f095dfe..14b16a8 100644
--- a/lib/dartdoc.dart
+++ b/lib/dartdoc.dart
@@ -46,7 +46,7 @@
 
 const String name = 'dartdoc';
 // Update when pubspec version changes.
-const String version = '0.13.0+1';
+const String version = '0.14.0';
 
 final String defaultOutDir = path.join('doc', 'api');
 
diff --git a/pubspec.yaml b/pubspec.yaml
index bd1ce17..16b6188 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,6 +1,6 @@
 name: dartdoc
 # Also update the `version` field in lib/dartdoc.dart.
-version: 0.13.0+1
+version: 0.14.0
 author: Dart Team <misc@dartlang.org>
 description: A documentation generator for Dart.
 homepage: https://github.com/dart-lang/dartdoc
diff --git a/testing/test_package_docs/index.html b/testing/test_package_docs/index.html
index 21d6395..01685d0 100644
--- a/testing/test_package_docs/index.html
+++ b/testing/test_package_docs/index.html
@@ -4,7 +4,7 @@
   <meta charset="utf-8">
   <meta http-equiv="X-UA-Compatible" content="IE=edge">
   <meta name="viewport" content="width=device-width, initial-scale=1">
-  <meta name="generator" content="made with love by dartdoc 0.13.0+1">
+  <meta name="generator" content="made with love by dartdoc 0.14.0">
   <meta name="description" content="test_package API docs, for the Dart programming language.">
   <title>test_package - Dart API docs</title>
 
diff --git a/tool/grind.dart b/tool/grind.dart
index 41da018..5337bb0 100644
--- a/tool/grind.dart
+++ b/tool/grind.dart
@@ -175,7 +175,7 @@
 @Task('Publish to pub.dartlang')
 @Depends(checkChangelogHasVersion, checkVersionMatches)
 publish() async {
-  await run('pub', arguments: ['publish']);
+  log('run : pub publish');
 }
 
 @Task('Run all the tests.')