Remove references to next tag

Luke Karrys committed Oct 11, 2021 at 15:57 UTC 6e08dba3ecad02e8f1269786699c943ba7d99f64
2 files changed -32
content/getting-started/configuring-your-local-environment/about-npm-versions.mdx
-27
@@ -6,7 +6,6 @@ slug: /about-npm-versions
6 The npm command line interface (CLI) is released on a regular cadence. We recommend installing the release that supports your workflow:
7
8 - [latest release](#the-latest-release-of-npm): the most recent stable version.
9 -- [next release](#the-next-release-of-npm): the version in current development.
9
10 ## The `latest` release of npm
11
@@ -15,29 +14,3 @@ The `latest` release of npm is the most recent stable version. When you install
14 ```
15 npm install npm@latest -g
16 ```
18 -
19 -## The `next` release of npm
20 -
21 -<Note>
22 -
23 -The `next` release of npm may contain features that do not match the features ultimately released in the `latest` stable version of npm.
24 -
25 -More.
26 -
27 -</Note>
28 -
29 -The `next` release of npm is the version undergoing current development; it has the latest changes and newest set of features.
30 -
31 -The `next` release of npm is the most recent unreleased version of npm that is eventually released as the `latest` version. You may want to update your npm client to the `next` release to test your packages against it before `latest` is released.
32 -
33 -To update to the `next` release of npm, on the command line, run:
34 -
35 -```
36 -npm install npm@next -g
37 -```
38 -
39 -<Note>
40 -
41 -Depending on the development cycle, `npm install npm@next -g` may reinstall the `latest` release of npm.
42 -
43 -</Note>
content/getting-started/troubleshooting/try-the-latest-stable-version-of-npm.mdx
-5
@@ -20,11 +20,6 @@ You can upgrade to the latest version of npm using:
20 npm install -g npm@latest
21 ```
22
23 -Or upgrade to the most recent release:
24 -```
25 -npm install -g npm@next
26 -```
27 -
23 ## Upgrading on Windows
24 _Microsoft wrote a small command line tool to automate the steps below. [You can go and download it here](https://github.com/felixrieseberg/npm-windows-upgrade) - or stick with the manual path outlined below._
25