bump to 9.0.8 (#4270)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 27512a3..3ec2727 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+## 9.0.8
+* Fix a `RangeError` caused by string offset drift when parsing `@docImport` in files with `\r\n` line endings.
+
## 9.0.7
* Add built-in CSS styling for the `<callout-box>` HTML tag.
* Add a copy button to all fenced code blocks in generated documentation.
diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml
index 58dddb6..2aa9717 100644
--- a/dartdoc_options.yaml
+++ b/dartdoc_options.yaml
@@ -1,4 +1,4 @@
dartdoc:
linkToSource:
root: '.'
- uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v9.0.7/%f%#L%l%'
+ uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v9.0.8/%f%#L%l%'
diff --git a/lib/src/version.dart b/lib/src/version.dart
index b71ffec..838a3bc 100644
--- a/lib/src/version.dart
+++ b/lib/src/version.dart
@@ -1 +1 @@
-const packageVersion = '9.0.7';
+const packageVersion = '9.0.8';
diff --git a/pubspec.yaml b/pubspec.yaml
index 7734fbb..c6ea934 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
name: dartdoc
-version: 9.0.7
+version: 9.0.8
description: A non-interactive HTML documentation generator for Dart source code.
repository: https://github.com/dart-lang/dartdoc