Skip to content

Commit e69b434

Browse files
committed
release v0.2.0
1 parent f0caedf commit e69b434

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,28 +79,28 @@ Using [vim-plug](https://github.com/junegunn/vim-plug)
7979

8080
```vim
8181
Plug 'nvim-lua/plenary.nvim'
82-
Plug 'nvim-telescope/telescope.nvim', { 'tag': 'v0.1.9' }
82+
Plug 'nvim-telescope/telescope.nvim', { 'tag': 'v0.2.0' }
8383
```
8484

8585
Using [dein](https://github.com/Shougo/dein.vim)
8686

8787
```vim
8888
call dein#add('nvim-lua/plenary.nvim')
89-
call dein#add('nvim-telescope/telescope.nvim', { 'rev': 'v0.1.9' })
89+
call dein#add('nvim-telescope/telescope.nvim', { 'rev': 'v0.2.0' })
9090
```
9191

9292
Using [lazy.nvim](https://github.com/folke/lazy.nvim)
9393

9494
```lua
9595
-- init.lua:
9696
{
97-
'nvim-telescope/telescope.nvim', tag = 'v0.1.9',
97+
'nvim-telescope/telescope.nvim', tag = 'v0.2.0',
9898
dependencies = { 'nvim-lua/plenary.nvim' }
9999
}
100100

101101
-- plugins/telescope.lua:
102102
return {
103-
'nvim-telescope/telescope.nvim', tag = 'v0.1.9',
103+
'nvim-telescope/telescope.nvim', tag = 'v0.2.0',
104104
dependencies = { 'nvim-lua/plenary.nvim' }
105105
}
106106
```

0 commit comments

Comments
 (0)