Skip to content

Commit 392706b

Browse files
committed
Prepare for 0.11.0 release.
1 parent abd7aa3 commit 392706b

File tree

2 files changed

+52
-72
lines changed

2 files changed

+52
-72
lines changed

readmes/mini-extra.md

Lines changed: 26 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,10 @@ For more information, see these tags in help file:
5757

5858
This plugin can be installed as part of 'mini.nvim' library (**recommended**) or as a standalone Git repository.
5959

60-
<!-- TODO: Uncomment use of `stable` branch before 0.11.0 release -->
61-
62-
<!-- There are two branches to install from: -->
63-
64-
During beta-testing phase there is only one branch to install from:
60+
There are two branches to install from:
6561

6662
- `main` (default, **recommended**) will have latest development version of plugin. All changes since last stable release should be perceived as being in beta testing phase (meaning they already passed alpha-testing and are moderately settled).
67-
<!-- - `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch. -->
63+
- `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.
6864

6965
Here are code snippets for some common installation methods (use only one):
7066

@@ -79,21 +75,19 @@ Here are code snippets for some common installation methods (use only one):
7975
</thead>
8076
<tbody>
8177
<tr>
82-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
83-
<td rowspan=1>'mini.nvim' library</td>
78+
<td rowspan=2>'mini.nvim' library</td>
8479
<td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
8580
</tr>
86-
<!-- <tr> -->
87-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td> -->
88-
<!-- </tr> -->
8981
<tr>
90-
<!-- <td rowspan=2>Standalone plugin</td> -->
91-
<td rowspan=1>Standalone plugin</td>
82+
<td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td>
83+
</tr>
84+
<tr>
85+
<td rowspan=2>Standalone plugin</td>
9286
<td>Main</td> <td><code>{ 'echasnovski/mini.extra', version = false },</code></td>
9387
</tr>
94-
<!-- <tr> -->
95-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.extra', version = '*' },</code></td> -->
96-
<!-- </tr> -->
88+
<tr>
89+
<td>Stable</td> <td><code>{ 'echasnovski/mini.extra', version = '*' },</code></td>
90+
</tr>
9791
</tbody>
9892
</table>
9993
</details>
@@ -109,20 +103,18 @@ Here are code snippets for some common installation methods (use only one):
109103
</thead>
110104
<tbody>
111105
<tr>
112-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
113-
<td rowspan=1>'mini.nvim' library</td>
106+
<td rowspan=2>'mini.nvim' library</td>
114107
<td>Main</td> <td><code>use 'echasnovski/mini.nvim'</code></td>
115108
</tr>
116-
<!-- <tr> -->
117-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td> -->
118-
<!-- </tr> -->
119109
<tr>
120-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.extra'</code></td> -->
121-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.extra'</code></td>
110+
<td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td>
111+
</tr>
112+
<tr>
113+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.extra'</code></td>
114+
</tr>
115+
<tr>
116+
<td>Stable</td> <td><code>use { 'echasnovski/mini.extra', branch = 'stable' }</code></td>
122117
</tr>
123-
<!-- <tr> -->
124-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.extra', branch = 'stable' }</code></td> -->
125-
<!-- </tr> -->
126118
</tbody>
127119
</table>
128120
</details>
@@ -138,20 +130,18 @@ Here are code snippets for some common installation methods (use only one):
138130
</thead>
139131
<tbody>
140132
<tr>
141-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
142-
<td rowspan=1>'mini.nvim' library</td>
133+
<td rowspan=2>'mini.nvim' library</td>
143134
<td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
144135
</tr>
145-
<!-- <tr> -->
146-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td> -->
147-
<!-- </tr> -->
148136
<tr>
149-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.extra'</code></td> -->
150-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.extra'</code></td>
137+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td>
138+
</tr>
139+
<tr>
140+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.extra'</code></td>
141+
</tr>
142+
<tr>
143+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.extra', { 'branch': 'stable' }</code></td>
151144
</tr>
152-
<!-- <tr> -->
153-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.extra', { 'branch': 'stable' }</code></td> -->
154-
<!-- </tr> -->
155145
</tbody>
156146
</table>
157147
</details>

readmes/mini-pick.md

Lines changed: 26 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -143,14 +143,10 @@ When picker is busy (like if there are no items yet set or matching is active) w
143143

144144
This plugin can be installed as part of 'mini.nvim' library (**recommended**) or as a standalone Git repository.
145145

146-
<!-- TODO: Uncomment use of `stable` branch before 0.10.0 release -->
147-
148-
<!-- There are two branches to install from: -->
149-
150-
During beta-testing phase there is only one branch to install from:
146+
There are two branches to install from:
151147

152148
- `main` (default, **recommended**) will have latest development version of plugin. All changes since last stable release should be perceived as being in beta testing phase (meaning they already passed alpha-testing and are moderately settled).
153-
<!-- - `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch. -->
149+
- `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.
154150

155151
Here are code snippets for some common installation methods (use only one):
156152

@@ -165,21 +161,19 @@ Here are code snippets for some common installation methods (use only one):
165161
</thead>
166162
<tbody>
167163
<tr>
168-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
169-
<td rowspan=1>'mini.nvim' library</td>
164+
<td rowspan=2>'mini.nvim' library</td>
170165
<td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
171166
</tr>
172-
<!-- <tr> -->
173-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td> -->
174-
<!-- </tr> -->
175167
<tr>
176-
<!-- <td rowspan=2>Standalone plugin</td> -->
177-
<td rowspan=1>Standalone plugin</td>
168+
<td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td>
169+
</tr>
170+
<tr>
171+
<td rowspan=2>Standalone plugin</td>
178172
<td>Main</td> <td><code>{ 'echasnovski/mini.pick', version = false },</code></td>
179173
</tr>
180-
<!-- <tr> -->
181-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.pick', version = '*' },</code></td> -->
182-
<!-- </tr> -->
174+
<tr>
175+
<td>Stable</td> <td><code>{ 'echasnovski/mini.pick', version = '*' },</code></td>
176+
</tr>
183177
</tbody>
184178
</table>
185179
</details>
@@ -195,20 +189,18 @@ Here are code snippets for some common installation methods (use only one):
195189
</thead>
196190
<tbody>
197191
<tr>
198-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
199-
<td rowspan=1>'mini.nvim' library</td>
192+
<td rowspan=2>'mini.nvim' library</td>
200193
<td>Main</td> <td><code>use 'echasnovski/mini.nvim'</code></td>
201194
</tr>
202-
<!-- <tr> -->
203-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td> -->
204-
<!-- </tr> -->
205195
<tr>
206-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.pick'</code></td> -->
207-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.pick'</code></td>
196+
<td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td>
197+
</tr>
198+
<tr>
199+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.pick'</code></td>
200+
</tr>
201+
<tr>
202+
<td>Stable</td> <td><code>use { 'echasnovski/mini.pick', branch = 'stable' }</code></td>
208203
</tr>
209-
<!-- <tr> -->
210-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.pick', branch = 'stable' }</code></td> -->
211-
<!-- </tr> -->
212204
</tbody>
213205
</table>
214206
</details>
@@ -224,20 +216,18 @@ Here are code snippets for some common installation methods (use only one):
224216
</thead>
225217
<tbody>
226218
<tr>
227-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
228-
<td rowspan=1>'mini.nvim' library</td>
219+
<td rowspan=2>'mini.nvim' library</td>
229220
<td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
230221
</tr>
231-
<!-- <tr> -->
232-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td> -->
233-
<!-- </tr> -->
234222
<tr>
235-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.pick'</code></td> -->
236-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.pick'</code></td>
223+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td>
224+
</tr>
225+
<tr>
226+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.pick'</code></td>
227+
</tr>
228+
<tr>
229+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.pick', { 'branch': 'stable' }</code></td>
237230
</tr>
238-
<!-- <tr> -->
239-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.pick', { 'branch': 'stable' }</code></td> -->
240-
<!-- </tr> -->
241231
</tbody>
242232
</table>
243233
</details>

0 commit comments

Comments
 (0)