Update some version pinning

Telescope master is now 0.9 and on. Making sure 0.7 versions are pinned
to stable releases, even if 0.9 is using same releases for now.

For todo-comment, using a version rule rather than a moving tag to
avoid got weirdness.
This commit is contained in:
ViViDboarder 2023-11-15 08:07:12 -08:00
parent ab29c55c39
commit 9b05e6a4e0
1 changed files with 3 additions and 2 deletions

View File

@ -425,7 +425,8 @@ use({
},
tag = utils.map_version_rule({
-- Follow stable release tag
[">=0.7.0"] = "0.1.0",
[">=0.9.0"] = "0.1.*",
[">=0.7.0"] = "0.1.*",
[">=0.6.0"] = "nvim-0.6",
["<0.6.0"] = "nvim-0.5.1",
["==0.5.0"] = "nvim-0.5.0",
@ -468,7 +469,7 @@ use({
end,
-- Tag and branch rule because old versions are supported on a branch while latest stable is a moving tag
tag = utils.map_version_rule({
[">=0.8.0"] = "stable",
[">=0.8.0"] = "v1.*",
["<0.8.0"] = utils.nil_val,
}),
branch = utils.map_version_rule({