publish 0.7.4
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e3d110b..c64be9c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,7 @@
 ## 0.7.4
 * [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 
 
 ## 0.7.3
 * [bug] Add missing close `span` in accessor setter template
diff --git a/lib/dartdoc.dart b/lib/dartdoc.dart
index 352379b..2e82918 100644
--- a/lib/dartdoc.dart
+++ b/lib/dartdoc.dart
@@ -35,7 +35,7 @@
 
 const String name = 'dartdoc';
 // Update when pubspec version changes.
-const String version = '0.7.3';
+const String version = '0.7.4';
 
 final String defaultOutDir = 'doc${Platform.pathSeparator}api';
 
diff --git a/pubspec.yaml b/pubspec.yaml
index 41fd088..8a8fba1 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,6 +1,6 @@
 name: dartdoc
 # Also update the `version` field in lib/dartdoc.dart.
-version: 0.7.4-dev
+version: 0.7.4
 author: Dart Team <misc@dartlang.org>
 description: A documentation generator for Dart.
 homepage: https://github.com/dart-lang/dartdoc