Skip to content

Commit 0cdef00

Browse files
committed
Prepare for 0.10.0 release.
1 parent 7532138 commit 0cdef00

File tree

3 files changed

+78
-108
lines changed

3 files changed

+78
-108
lines changed

readmes/mini-clue.md

Lines changed: 26 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -142,14 +142,10 @@ miniclue.setup({
142142

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

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

151147
- `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).
152-
<!-- - `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch. -->
148+
- `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.
153149

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

@@ -164,21 +160,19 @@ Here are code snippets for some common installation methods (use only one):
164160
</thead>
165161
<tbody>
166162
<tr>
167-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
168-
<td rowspan=1>'mini.nvim' library</td>
163+
<td rowspan=2>'mini.nvim' library</td>
169164
<td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
170165
</tr>
171-
<!-- <tr> -->
172-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td> -->
173-
<!-- </tr> -->
174166
<tr>
175-
<!-- <td rowspan=2>Standalone plugin</td> -->
176-
<td rowspan=1>Standalone plugin</td>
167+
<td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td>
168+
</tr>
169+
<tr>
170+
<td rowspan=2>Standalone plugin</td>
177171
<td>Main</td> <td><code>{ 'echasnovski/mini.clue', version = false },</code></td>
178172
</tr>
179-
<!-- <tr> -->
180-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.clue', version = '*' },</code></td> -->
181-
<!-- </tr> -->
173+
<tr>
174+
<td>Stable</td> <td><code>{ 'echasnovski/mini.clue', version = '*' },</code></td>
175+
</tr>
182176
</tbody>
183177
</table>
184178
</details>
@@ -194,20 +188,18 @@ Here are code snippets for some common installation methods (use only one):
194188
</thead>
195189
<tbody>
196190
<tr>
197-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
198-
<td rowspan=1>'mini.nvim' library</td>
191+
<td rowspan=2>'mini.nvim' library</td>
199192
<td>Main</td> <td><code>use 'echasnovski/mini.nvim'</code></td>
200193
</tr>
201-
<!-- <tr> -->
202-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td> -->
203-
<!-- </tr> -->
204194
<tr>
205-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.clue'</code></td> -->
206-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.clue'</code></td>
195+
<td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td>
196+
</tr>
197+
<tr>
198+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.clue'</code></td>
199+
</tr>
200+
<tr>
201+
<td>Stable</td> <td><code>use { 'echasnovski/mini.clue', branch = 'stable' }</code></td>
207202
</tr>
208-
<!-- <tr> -->
209-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.clue', branch = 'stable' }</code></td> -->
210-
<!-- </tr> -->
211203
</tbody>
212204
</table>
213205
</details>
@@ -223,20 +215,18 @@ Here are code snippets for some common installation methods (use only one):
223215
</thead>
224216
<tbody>
225217
<tr>
226-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
227-
<td rowspan=1>'mini.nvim' library</td>
218+
<td rowspan=2>'mini.nvim' library</td>
228219
<td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
229220
</tr>
230-
<!-- <tr> -->
231-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td> -->
232-
<!-- </tr> -->
233221
<tr>
234-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.clue'</code></td> -->
235-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.clue'</code></td>
222+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td>
223+
</tr>
224+
<tr>
225+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.clue'</code></td>
226+
</tr>
227+
<tr>
228+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.clue', { 'branch': 'stable' }</code></td>
236229
</tr>
237-
<!-- <tr> -->
238-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.clue', { 'branch': 'stable' }</code></td> -->
239-
<!-- </tr> -->
240230
</tbody>
241231
</table>
242232
</details>

readmes/mini-files.md

Lines changed: 26 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,10 @@ For bigger overview, see `*MiniFiles-manipulation*` tag in help file.
8888

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

91-
<!-- TODO: Uncomment use of `stable` branch before 0.10.0 release -->
92-
93-
<!-- There are two branches to install from: -->
94-
95-
During beta-testing phase there is only one branch to install from:
91+
There are two branches to install from:
9692

9793
- `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).
98-
<!-- - `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch. -->
94+
- `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.
9995

10096
Here are code snippets for some common installation methods (use only one):
10197

@@ -110,21 +106,19 @@ Here are code snippets for some common installation methods (use only one):
110106
</thead>
111107
<tbody>
112108
<tr>
113-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
114-
<td rowspan=1>'mini.nvim' library</td>
109+
<td rowspan=2>'mini.nvim' library</td>
115110
<td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
116111
</tr>
117-
<!-- <tr> -->
118-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td> -->
119-
<!-- </tr> -->
120112
<tr>
121-
<!-- <td rowspan=2>Standalone plugin</td> -->
122-
<td rowspan=1>Standalone plugin</td>
113+
<td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td>
114+
</tr>
115+
<tr>
116+
<td rowspan=2>Standalone plugin</td>
123117
<td>Main</td> <td><code>{ 'echasnovski/mini.files', version = false },</code></td>
124118
</tr>
125-
<!-- <tr> -->
126-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.files', version = '*' },</code></td> -->
127-
<!-- </tr> -->
119+
<tr>
120+
<td>Stable</td> <td><code>{ 'echasnovski/mini.files', version = '*' },</code></td>
121+
</tr>
128122
</tbody>
129123
</table>
130124
</details>
@@ -140,20 +134,18 @@ Here are code snippets for some common installation methods (use only one):
140134
</thead>
141135
<tbody>
142136
<tr>
143-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
144-
<td rowspan=1>'mini.nvim' library</td>
137+
<td rowspan=2>'mini.nvim' library</td>
145138
<td>Main</td> <td><code>use 'echasnovski/mini.nvim'</code></td>
146139
</tr>
147-
<!-- <tr> -->
148-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td> -->
149-
<!-- </tr> -->
150140
<tr>
151-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.files'</code></td> -->
152-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.files'</code></td>
141+
<td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td>
142+
</tr>
143+
<tr>
144+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.files'</code></td>
145+
</tr>
146+
<tr>
147+
<td>Stable</td> <td><code>use { 'echasnovski/mini.files', branch = 'stable' }</code></td>
153148
</tr>
154-
<!-- <tr> -->
155-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.files', branch = 'stable' }</code></td> -->
156-
<!-- </tr> -->
157149
</tbody>
158150
</table>
159151
</details>
@@ -169,20 +161,18 @@ Here are code snippets for some common installation methods (use only one):
169161
</thead>
170162
<tbody>
171163
<tr>
172-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
173-
<td rowspan=1>'mini.nvim' library</td>
164+
<td rowspan=2>'mini.nvim' library</td>
174165
<td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
175166
</tr>
176-
<!-- <tr> -->
177-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td> -->
178-
<!-- </tr> -->
179167
<tr>
180-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.files'</code></td> -->
181-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.files'</code></td>
168+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td>
169+
</tr>
170+
<tr>
171+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.files'</code></td>
172+
</tr>
173+
<tr>
174+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.files', { 'branch': 'stable' }</code></td>
182175
</tr>
183-
<!-- <tr> -->
184-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.files', { 'branch': 'stable' }</code></td> -->
185-
<!-- </tr> -->
186176
</tbody>
187177
</table>
188178
</details>

readmes/mini-operators.md

Lines changed: 26 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,10 @@ See `*MiniOperators-overview*` and `*MiniOperators.config*` tags in help for mor
4444

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

47-
<!-- TODO: Uncomment use of `stable` branch before 0.10.0 release -->
48-
49-
<!-- There are two branches to install from: -->
50-
51-
During beta-testing phase there is only one branch to install from:
47+
There are two branches to install from:
5248

5349
- `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).
54-
<!-- - `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch. -->
50+
- `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.
5551

5652
Here are code snippets for some common installation methods (use only one):
5753

@@ -66,21 +62,19 @@ Here are code snippets for some common installation methods (use only one):
6662
</thead>
6763
<tbody>
6864
<tr>
69-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
70-
<td rowspan=1>'mini.nvim' library</td>
65+
<td rowspan=2>'mini.nvim' library</td>
7166
<td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
7267
</tr>
73-
<!-- <tr> -->
74-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td> -->
75-
<!-- </tr> -->
7668
<tr>
77-
<!-- <td rowspan=2>Standalone plugin</td> -->
78-
<td rowspan=1>Standalone plugin</td>
69+
<td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td>
70+
</tr>
71+
<tr>
72+
<td rowspan=2>Standalone plugin</td>
7973
<td>Main</td> <td><code>{ 'echasnovski/mini.operators', version = false },</code></td>
8074
</tr>
81-
<!-- <tr> -->
82-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.operators', version = '*' },</code></td> -->
83-
<!-- </tr> -->
75+
<tr>
76+
<td>Stable</td> <td><code>{ 'echasnovski/mini.operators', version = '*' },</code></td>
77+
</tr>
8478
</tbody>
8579
</table>
8680
</details>
@@ -96,20 +90,18 @@ Here are code snippets for some common installation methods (use only one):
9690
</thead>
9791
<tbody>
9892
<tr>
99-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
100-
<td rowspan=1>'mini.nvim' library</td>
93+
<td rowspan=2>'mini.nvim' library</td>
10194
<td>Main</td> <td><code>use 'echasnovski/mini.nvim'</code></td>
10295
</tr>
103-
<!-- <tr> -->
104-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td> -->
105-
<!-- </tr> -->
10696
<tr>
107-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.operators'</code></td> -->
108-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.operators'</code></td>
97+
<td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td>
98+
</tr>
99+
<tr>
100+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.operators'</code></td>
101+
</tr>
102+
<tr>
103+
<td>Stable</td> <td><code>use { 'echasnovski/mini.operators', branch = 'stable' }</code></td>
109104
</tr>
110-
<!-- <tr> -->
111-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.operators', branch = 'stable' }</code></td> -->
112-
<!-- </tr> -->
113105
</tbody>
114106
</table>
115107
</details>
@@ -125,20 +117,18 @@ Here are code snippets for some common installation methods (use only one):
125117
</thead>
126118
<tbody>
127119
<tr>
128-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
129-
<td rowspan=1>'mini.nvim' library</td>
120+
<td rowspan=2>'mini.nvim' library</td>
130121
<td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
131122
</tr>
132-
<!-- <tr> -->
133-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td> -->
134-
<!-- </tr> -->
135123
<tr>
136-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.operators'</code></td> -->
137-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.operators'</code></td>
124+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td>
125+
</tr>
126+
<tr>
127+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.operators'</code></td>
128+
</tr>
129+
<tr>
130+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.operators', { 'branch': 'stable' }</code></td>
138131
</tr>
139-
<!-- <tr> -->
140-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.operators', { 'branch': 'stable' }</code></td> -->
141-
<!-- </tr> -->
142132
</tbody>
143133
</table>
144134
</details>

0 commit comments

Comments
 (0)