how can I check what is the latest version of a specific kernel version/tree?
Let's say, I am running kernel 5.15.x and I want to know the latest version (the highest x) available for that kernel line.
How can I do this on command line?
I know I could use some combination of "curl -s https://www.kernel.org/" and "grep" and "cut", but I would like a solution that is a bit more stable, if kernel.org should change the layout of their home page.
Thanks in advance!