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-31 11:46:03 +0100
commit28f244252037be8291e612d072bd4e4c263cb626 (patch)
tree07cf2824a905cb8b7ef28c3f76ac6437374305bf /documentation
parent1c4b8ba2ebc79f7e6dadf94755096061cd0a1805 (diff)
downloadpoky-28f244252037be8291e612d072bd4e4c263cb626.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: 5bcd6a632ba2ebace9c65fe8529f8f1de40226ce) 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 1ab946fe61..fceff4dbce 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"]