From f2bfde705ac752c52544d5cfa8b0aee0a766c1ed Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Date: Fri, 21 Jun 2024 04:34:16 -0700 Subject: [PATCH] docs(readme): update latest stable version tag (#3179) --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f23cd110..e3a9b76a 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ Using [vim-plug](https://github.com/junegunn/vim-plug) ```viml Plug 'nvim-lua/plenary.nvim' -Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.6' } +Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.8' } " or , { 'branch': '0.1.x' } ``` @@ -93,7 +93,7 @@ Using [dein](https://github.com/Shougo/dein.vim) ```viml call dein#add('nvim-lua/plenary.nvim') -call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.6' }) +call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.8' }) " or , { 'rev': '0.1.x' }) ``` @@ -101,7 +101,7 @@ Using [packer.nvim](https://github.com/wbthomason/packer.nvim) ```lua use { - 'nvim-telescope/telescope.nvim', tag = '0.1.6', + 'nvim-telescope/telescope.nvim', tag = '0.1.8', -- or , branch = '0.1.x', requires = { {'nvim-lua/plenary.nvim'} } } @@ -112,14 +112,14 @@ Using [lazy.nvim](https://github.com/folke/lazy.nvim) ```lua -- init.lua: { - 'nvim-telescope/telescope.nvim', tag = '0.1.6', + 'nvim-telescope/telescope.nvim', tag = '0.1.8', -- or , branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim' } } -- plugins/telescope.lua: return { - 'nvim-telescope/telescope.nvim', tag = '0.1.6', + 'nvim-telescope/telescope.nvim', tag = '0.1.8', -- or , branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim' } }