From 9b05e6a4e02f8d2e57e1d4be666c17ba8eaaf05a Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Wed, 15 Nov 2023 08:07:12 -0800 Subject: [PATCH] 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. --- neovim/lua/plugins.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/neovim/lua/plugins.lua b/neovim/lua/plugins.lua index 41c3cff..accda7c 100644 --- a/neovim/lua/plugins.lua +++ b/neovim/lua/plugins.lua @@ -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({