Bump to 0.32.3 (#2277)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 09a3045..06c0108 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,26 @@
+## 0.32.3
+
+* Allow injected HTML in a macro which is output by a tool (#2274).
+* Add packageName to index.json entries (#2271).
+* Bump markdown to 2.1.5 (#2267).
+* Reduce the time to generate docs. Using an example Flutter package, the time
+  required to generate docs was reduced from 67 seconds to 46 seconds, a 31%
+  reduction (#2255, #2259, #2260, #2267).
+* Don't HTML-escape source code blocks in Markdown output (#2253).
+* Don't crash when documenting an export with '//' in the path (#2254).
+* Improve null safety support (#2269).
+
+## 0.32.2 (unreleased)
+* Improve null safety support (#2248, #2250).
+* Allow dartdoc to execute a callback after `generateDocs` (#2238, #2239).
+* Fix a type parameter rendering bug (#2227).
+
 ## 0.32.1
-* Allow documenting code with null safety (#2210, #2221)
-* Refactors moving toward mono-repo support (#2219)
+* Allow documenting code with null safety (#2210, #2221).
+* Refactors moving toward mono-repo support (#2219).
 
 ## 0.32.0
-* Fix type exception in 2.9 dev versions of dart (#2214)
+* Fix type exception in 2.9 dev versions of dart (#2214).
 * **BREAKING** : Refactor `Container` class, changing the names
   of many getters for templates.  Users with custom templates
   may need to update their templates (#2206, #2208).
@@ -11,7 +28,7 @@
 * Fix crash with newer analyzers and unnamed extension methods
   (#2197).
 * Use `flutter pub get` when appropriate instead of dart
-  `pub get` (#2190)
+  `pub get` (#2190).
 
 ## 0.31.0
 * `--link-to-remote` is now the default.  (#2147)
diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml
index 0b7966a..b8359da 100644
--- a/dartdoc_options.yaml
+++ b/dartdoc_options.yaml
@@ -1,4 +1,4 @@
 dartdoc:
   linkToSource:
     root: '.'
-    uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.32.1/%f%#L%l%'
+    uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.32.3/%f%#L%l%'
diff --git a/lib/src/version.dart b/lib/src/version.dart
index 1f3e7b8..8ae733c 100644
--- a/lib/src/version.dart
+++ b/lib/src/version.dart
@@ -1,2 +1,2 @@
 // Generated code. Do not modify.
-const packageVersion = '0.32.1';
+const packageVersion = '0.32.3';
diff --git a/pubspec.yaml b/pubspec.yaml
index 160e82f..37410c0 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,6 +1,6 @@
 name: dartdoc
 # Run `grind build` after updating.
-version: 0.32.1
+version: 0.32.3
 description: A non-interactive HTML documentation generator for Dart source code.
 homepage: https://github.com/dart-lang/dartdoc
 environment: