From a3be5bc5606262ce57286ae662dcf45a79b3c9ed Mon Sep 17 00:00:00 2001 From: Chris Young Date: Wed, 1 Nov 2017 12:20:14 -0700 Subject: [PATCH] doc: add 9.x to version picker and mark 8.x as LTS PR-URL: https://github.com/nodejs/node/pull/16672 Fixes: https://github.com/node/issues/16671 Reviewed-By: Colin Ihrig Reviewed-By: Jeremiah Senkpiel Reviewed-By: Anatoli Papirovski Reviewed-By: Luigi Pinca Reviewed-By: Yuta Hiroto Reviewed-By: James M Snell --- tools/doc/html.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/doc/html.js b/tools/doc/html.js index 22a793c3394bd1..b6e8866c247d55 100644 --- a/tools/doc/html.js +++ b/tools/doc/html.js @@ -211,7 +211,8 @@ function altDocs(filename) { } const versions = [ - { num: '8.x' }, + { num: '9.x' }, + { num: '8.x', lts: true }, { num: '7.x' }, { num: '6.x', lts: true }, { num: '5.x' },