From 913bd7beeb0f35c8386ec82d6bbc6231d0e0dd15 Mon Sep 17 00:00:00 2001 From: Michael McQuade Date: Thu, 17 Jun 2021 12:35:12 -0500 Subject: [PATCH] Correct Next.js 9 upgrade instructions (#26271) The upgrade instructions from version 9 to version 10 still had the `@latest` tag. This PR changes it to use `@10` --- docs/upgrading.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/upgrading.md b/docs/upgrading.md index 164f500efc3a6..f59f4a1522c9e 100644 --- a/docs/upgrading.md +++ b/docs/upgrading.md @@ -142,7 +142,13 @@ There were no breaking changes between version 9 and 10. To upgrade run the following command: ``` -npm install next@latest +npm install next@10 +``` + +Or using `yarn`: + +``` +yarn add next@10 ``` ## Upgrading from version 8 to 9