Skip to content

Commit a2a15cf

Browse files
authored
doc: update tag to latest version (#2737)
1 parent 550055e commit a2a15cf

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,22 +83,22 @@ Using [vim-plug](https://github.com/junegunn/vim-plug)
8383

8484
```viml
8585
Plug 'nvim-lua/plenary.nvim'
86-
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.3' }
86+
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.4' }
8787
" or , { 'branch': '0.1.x' }
8888
```
8989

9090
Using [dein](https://github.com/Shougo/dein.vim)
9191

9292
```viml
9393
call dein#add('nvim-lua/plenary.nvim')
94-
call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.3' })
94+
call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.4' })
9595
" or , { 'rev': '0.1.x' })
9696
```
9797
Using [packer.nvim](https://github.com/wbthomason/packer.nvim)
9898

9999
```lua
100100
use {
101-
'nvim-telescope/telescope.nvim', tag = '0.1.3',
101+
'nvim-telescope/telescope.nvim', tag = '0.1.4',
102102
-- or , branch = '0.1.x',
103103
requires = { {'nvim-lua/plenary.nvim'} }
104104
}
@@ -109,14 +109,14 @@ Using [lazy.nvim](https://github.com/folke/lazy.nvim)
109109
```lua
110110
-- init.lua:
111111
{
112-
'nvim-telescope/telescope.nvim', tag = '0.1.3',
112+
'nvim-telescope/telescope.nvim', tag = '0.1.4',
113113
-- or , branch = '0.1.x',
114114
dependencies = { 'nvim-lua/plenary.nvim' }
115115
}
116116

117117
-- plugins/telescope.lua:
118118
return {
119-
'nvim-telescope/telescope.nvim', tag = '0.1.3',
119+
'nvim-telescope/telescope.nvim', tag = '0.1.4',
120120
-- or , branch = '0.1.x',
121121
dependencies = { 'nvim-lua/plenary.nvim' }
122122
}

0 commit comments

Comments
 (0)