Skip to content

Commit b79cd6c

Browse files
authored
release: telescope 0.1.0 (#2067)
1 parent 2d4ef4d commit b79cd6c

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ body:
2929
placeholder: "macOS 11.5"
3030
validations:
3131
required: true
32+
- type: input
33+
attributes:
34+
label: "Telescope version / branch / rev"
35+
placeholder: "telescope 0.1.0"
36+
validations:
37+
required: true
3238
- type: textarea
3339
attributes:
3440
label: "checkhealth telescope"

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,24 +71,34 @@ wiki.
7171

7272
### Installation
7373

74+
It is suggested to either use the latest release
75+
[tag](https://github.com/nvim-telescope/telescope.nvim/tags) or our release
76+
branch (which will get consistent updates)
77+
[0.1.x](https://github.com/nvim-telescope/telescope.nvim/tree/0.1.x).
78+
79+
It is not suggested to run latest master.
80+
7481
Using [vim-plug](https://github.com/junegunn/vim-plug)
7582

7683
```viml
7784
Plug 'nvim-lua/plenary.nvim'
78-
Plug 'nvim-telescope/telescope.nvim'
85+
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.0' }
86+
" or , { 'branch': '0.1.x' }
7987
```
8088

8189
Using [dein](https://github.com/Shougo/dein.vim)
8290

8391
```viml
8492
call dein#add('nvim-lua/plenary.nvim')
85-
call dein#add('nvim-telescope/telescope.nvim')
93+
call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.0' })
94+
" or , { 'rev': '0.1.x' })
8695
```
8796
Using [packer.nvim](https://github.com/wbthomason/packer.nvim)
8897

8998
```lua
9099
use {
91-
'nvim-telescope/telescope.nvim',
100+
'nvim-telescope/telescope.nvim', tag = '0.1.0',
101+
-- or , branch = '0.1.x',
92102
requires = { {'nvim-lua/plenary.nvim'} }
93103
}
94104
```

0 commit comments

Comments
 (0)