diff --git a/packages/go_router/CHANGELOG.md b/packages/go_router/CHANGELOG.md index 0bba2a21f2c..173973a67e9 100644 --- a/packages/go_router/CHANGELOG.md +++ b/packages/go_router/CHANGELOG.md @@ -1,3 +1,8 @@ +## 8.0.1 + +- Fixes a link for an example in `path` documentation. + documentation. + ## 8.0.0 - **BREAKING CHANGE**: diff --git a/packages/go_router/lib/src/route.dart b/packages/go_router/lib/src/route.dart index 8983a7894e9..ba656326e32 100644 --- a/packages/go_router/lib/src/route.dart +++ b/packages/go_router/lib/src/route.dart @@ -208,7 +208,7 @@ class GoRoute extends RouteBase { /// The query parameter are also capture during the route parsing and stored /// in [GoRouterState]. /// - /// See [Query parameters and path parameters](https://github.com/flutter/packages/blob/main/packages/go_router/example/lib/sub_routes.dart) + /// See [Query parameters and path parameters](https://github.com/flutter/packages/blob/main/packages/go_router/example/lib/path_and_query_parameters.dart) /// to learn more about parameters. final String path; diff --git a/packages/go_router/pubspec.yaml b/packages/go_router/pubspec.yaml index b71ea714404..2d152daa8ae 100644 --- a/packages/go_router/pubspec.yaml +++ b/packages/go_router/pubspec.yaml @@ -1,7 +1,7 @@ name: go_router description: A declarative router for Flutter based on Navigation 2 supporting deep linking, data-driven routes and more -version: 8.0.0 +version: 8.0.1 repository: https://github.com/flutter/packages/tree/main/packages/go_router issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+go_router%22