Bump version to 0.33.0 (#2343)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index aedab00..af45873 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,30 @@
+## 0.33.0
+
+* Remove a use of resource loading (#2337)
+* Remove some unused dependencies (#2334)
+* Use the terminal width for the line length (#2333)
+* Disambiguate between named constructor and field (#2331)
+* Rename some fields which erroneously reference "default" constructors.
+  (#2330)
+* Support abstract fields (#2329)
+* Allow ? and ! to trail in doc comment references (#2328)
+* Use first element in a MultiplyDefinedElement (#2326)
+* Update all (approximately) i/o operations to use ResourceProvider (#2315):
+  * **Breaking change**: Many classes have a new ResourceProvider
+    resourceProvider field: DartdocFileWriter, SnapshotCache,
+    DartToolDefinition, ToolConfiguration, DartdocOption, PackageMetaProvider,
+    PackageMeta, ToolTempFileTracker.
+  * **Breaking change**: Each of SnapshotCache and ToolTempFileTracker has a
+    static instance field which took no arguments; now that they need a
+    ResourceProvider, it was unwieldy to pass a ResourceProvider to get the
+    instance each time, so a new method, createInstance creates the instance.
+* Remove wbr tags around block-displayed elements (#2320)
+* Warn when the defining library cannot be found (#2319)
+* Improve error when `FLUTTER_ROOT` is missing. (#2316)
+* Remove dependency on deprecated resource package. (#2314)
+* Link const annotations to their docs (#2313)
+* **Breaking change**: Remove FileContents class. (#2312)
+
 ## 0.32.4
 
 * Fix paragraph spacing in enum values. (#2286)
diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml
index 66fbb75..cdbcf80 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.4/%f%#L%l%'
+    uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.33.0/%f%#L%l%'
diff --git a/lib/src/version.dart b/lib/src/version.dart
index f35d70d..5138edf 100644
--- a/lib/src/version.dart
+++ b/lib/src/version.dart
@@ -1,2 +1,2 @@
 // Generated code. Do not modify.
-const packageVersion = '0.32.4';
+const packageVersion = '0.33.0';
diff --git a/pubspec.yaml b/pubspec.yaml
index eb28d5a..c474d64 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,6 +1,6 @@
 name: dartdoc
 # Run `grind build` after updating.
-version: 0.32.4
+version: 0.33.0
 description: A non-interactive HTML documentation generator for Dart source code.
 homepage: https://github.com/dart-lang/dartdoc
 environment: