From a172c46f07f7c68d706ee394238433484d2e3b9b Mon Sep 17 00:00:00 2001 From: Slowhand Date: Fri, 18 Nov 2022 04:04:06 +0900 Subject: [PATCH] [go_router] Fix link of ShellRoute in README (#2814) * Fix link of ShellRoute in README * Update pubspec and CHANGELOG * Update packages/go_router/CHANGELOG.md Co-authored-by: chunhtai <47866232+chunhtai@users.noreply.github.com> Co-authored-by: John Ryan Co-authored-by: chunhtai <47866232+chunhtai@users.noreply.github.com> --- packages/go_router/CHANGELOG.md | 4 ++++ packages/go_router/README.md | 2 +- packages/go_router/pubspec.yaml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/go_router/CHANGELOG.md b/packages/go_router/CHANGELOG.md index 20bff903cc..61a2de2de2 100644 --- a/packages/go_router/CHANGELOG.md +++ b/packages/go_router/CHANGELOG.md @@ -1,3 +1,7 @@ +## 5.1.10 + +- Fixes link of ShellRoute in README. + ## 5.1.9 - Fixes broken links in documentation. diff --git a/packages/go_router/README.md b/packages/go_router/README.md index 9da9e4da47..b0cd9ab19a 100644 --- a/packages/go_router/README.md +++ b/packages/go_router/README.md @@ -13,7 +13,7 @@ GoRouter has a number of features to make navigation straightforward: application state, for example to a sign-in when the user is not authenticated - Support for multiple Navigators via - [ShellRoute](https://pub.dev/documentation/go_router/ShellRoute-class.html) - + [ShellRoute](https://pub.dev/documentation/go_router/latest/go_router/ShellRoute-class.html) - you can display an inner Navigator that displays its own pages based on the matched route. For example, to display a BottomNavigationBar that stays visible at the bottom of the diff --git a/packages/go_router/pubspec.yaml b/packages/go_router/pubspec.yaml index 2d0de063db..adb22ee40a 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: 5.1.9 +version: 5.1.10 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