summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-23 10:20:59 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-23 12:08:56 +0000
commitbf4e51fe5fad936f8b0e55cb49e07b18498f1837 (patch)
treeddc60e083ac0cca2b15b410e76852492ad4959a1 /documentation
parentf7d853366470d1342e962c9d7164683a40dc0d7e (diff)
downloadpoky-bf4e51fe5fad936f8b0e55cb49e07b18498f1837.tar.gz
set_versions/switchers: Drop versions shown to the active releases
I believe we should only be showing the "active" versions in the switchers base list of releases to show. Zeus and warrior are old and no longer actively maintained and we don't suggest new users use them. gatesgarth is also outside it's support window. I therefore propose removing these leaving us with dev, honister, hardknott, dunfell (LTS). In addition, any release that is selected will be shown, along with any later release in that release series. People can still navigate to the older docs using the releases list or by direct URL but this highlights to users which releases we'd expect/encourage them to be using. (From yocto-docs rev: fdcdc50f3abf10aa702c958b8ba7ab6b19c57bff) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rwxr-xr-xdocumentation/set_versions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/set_versions.py b/documentation/set_versions.py
index 7a5f336115..b2859381e4 100755
--- a/documentation/set_versions.py
+++ b/documentation/set_versions.py
@@ -23,7 +23,7 @@ ourversion = None
23if len(sys.argv) == 2: 23if len(sys.argv) == 2:
24 ourversion = sys.argv[1] 24 ourversion = sys.argv[1]
25 25
26activereleases = ["honister", "hardknott", "gatesgarth", "dunfell", "zeus", "warrior"] 26activereleases = ["honister", "hardknott", "dunfell"]
27#devbranch = "langdale" 27#devbranch = "langdale"
28devbranch = "kirkstone" 28devbranch = "kirkstone"
29ltsseries = ["kirkstone", "dunfell"] 29ltsseries = ["kirkstone", "dunfell"]