Bump version to 8.0.1. (#3592)
diff --git a/CHANGELOG.md b/CHANGELOG.md index dd3277b..9f7dff7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -1,3 +1,9 @@ +## 8.0.1 + +* The deprecated public APIs will be removed in the next major release. +* Deprecate options.dart. (#3591) +* Deprecate public exports in lib/dartdoc.dart. (#3589) + ## 8.0.0 * Apply @hideConstantImplementations by default. (#3576)
diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml index 61d457e..8953cfe 100644 --- a/dartdoc_options.yaml +++ b/dartdoc_options.yaml
@@ -1,4 +1,4 @@ dartdoc: linkToSource: root: '.' - uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.0.0/%f%#L%l%' + uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.0.1/%f%#L%l%'
diff --git a/lib/src/version.dart b/lib/src/version.dart index ecb72ff..eaef880 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart
@@ -1 +1 @@ -const packageVersion = '8.0.0'; +const packageVersion = '8.0.1';
diff --git a/pubspec.yaml b/pubspec.yaml index c975fd4..d634d9d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml
@@ -1,5 +1,5 @@ name: dartdoc -version: 8.0.0 +version: 8.0.1 description: A non-interactive HTML documentation generator for Dart source code. repository: https://github.com/dart-lang/dartdoc