Skip to content

Commit 720d540

Browse files
committed
docs: prepare for 0.13.0 release
1 parent 7a46714 commit 720d540

File tree

2 files changed

+52
-66
lines changed

2 files changed

+52
-66
lines changed

readmes/mini-diff.md

+26-33
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,10 @@ Each enabled buffer has the following buffer-local variables which can be used i
129129

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

132-
During beta-testing phase there is only one branch to install from:
133-
<!-- There are two branches to install from: -->
132+
There are two branches to install from:
134133

135134
- `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).
136-
<!-- - `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch. -->
135+
- `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.
137136

138137
Here are code snippets for some common installation methods (use only one):
139138

@@ -147,19 +146,17 @@ Here are code snippets for some common installation methods (use only one):
147146
</thead>
148147
<tbody>
149148
<tr>
150-
<!-- <td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td rowspan=2><i>Follow recommended 'mini.deps' installation</i></td> -->
151-
<td rowspan=1>'mini.nvim' library</td> <td>Main</td> <td rowspan=1><i>Follow recommended 'mini.deps' installation</i></td>
149+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td rowspan=2><i>Follow recommended 'mini.deps' installation</i></td>
152150
</tr>
153-
<!-- <tr> -->
154-
<!-- <td>Stable</td> -->
155-
<!-- </tr> -->
156151
<tr>
157-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>add('echasnovski/mini.diff')</code></td> -->
158-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>add('echasnovski/mini.diff')</code></td>
152+
<td>Stable</td>
153+
</tr>
154+
<tr>
155+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>add('echasnovski/mini.diff')</code></td>
156+
</tr>
157+
<tr>
158+
<td>Stable</td> <td><code>add({ source = 'echasnovski/mini.diff', checkout = 'stable' })</code></td>
159159
</tr>
160-
<!-- <tr> -->
161-
<!-- <td>Stable</td> <td><code>add({ source = 'echasnovski/mini.diff', checkout = 'stable' })</code></td> -->
162-
<!-- </tr> -->
163160
</tbody>
164161
</table>
165162
</details>
@@ -174,19 +171,17 @@ Here are code snippets for some common installation methods (use only one):
174171
</thead>
175172
<tbody>
176173
<tr>
177-
<!-- <td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td> -->
178-
<td rowspan=1>'mini.nvim' library</td> <td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
174+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
175+
</tr>
176+
<tr>
177+
<td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td>
179178
</tr>
180-
<!-- <tr> -->
181-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td> -->
182-
<!-- </tr> -->
183179
<tr>
184-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>{ 'echasnovski/mini.diff', version = false },</code></td> -->
185-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>{ 'echasnovski/mini.diff', version = false },</code></td>
180+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>{ 'echasnovski/mini.diff', version = false },</code></td>
181+
</tr>
182+
<tr>
183+
<td>Stable</td> <td><code>{ 'echasnovski/mini.diff', version = '*' },</code></td>
186184
</tr>
187-
<!-- <tr> -->
188-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.diff', version = '*' },</code></td> -->
189-
<!-- </tr> -->
190185
</tbody>
191186
</table>
192187
</details>
@@ -201,19 +196,17 @@ Here are code snippets for some common installation methods (use only one):
201196
</thead>
202197
<tbody>
203198
<tr>
204-
<!-- <td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td> -->
205-
<td rowspan=1>'mini.nvim' library</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
199+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
200+
</tr>
201+
<tr>
202+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td>
203+
</tr>
204+
<tr>
205+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.diff'</code></td>
206206
</tr>
207-
<!-- <tr> -->
208-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td> -->
209-
<!-- </tr> -->
210207
<tr>
211-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.diff'</code></td> -->
212-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.diff'</code></td>
208+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.diff', { 'branch': 'stable' }</code></td>
213209
</tr>
214-
<!-- <tr> -->
215-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.diff', { 'branch': 'stable' }</code></td> -->
216-
<!-- </tr> -->
217210
</tbody>
218211
</table>
219212
</details>

readmes/mini-git.md

+26-33
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,10 @@ To read more information, see these tags in help file:
5151

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

54-
During beta-testing phase there is only one branch to install from:
55-
<!-- There are two branches to install from: -->
54+
There are two branches to install from:
5655

5756
- `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).
58-
<!-- - `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch. -->
57+
- `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.
5958

6059
Here are code snippets for some common installation methods (use only one):
6160

@@ -69,19 +68,17 @@ Here are code snippets for some common installation methods (use only one):
6968
</thead>
7069
<tbody>
7170
<tr>
72-
<!-- <td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td rowspan=2><i>Follow recommended 'mini.deps' installation</i></td> -->
73-
<td rowspan=1>'mini.nvim' library</td> <td>Main</td> <td rowspan=1><i>Follow recommended 'mini.deps' installation</i></td>
71+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td rowspan=2><i>Follow recommended 'mini.deps' installation</i></td>
7472
</tr>
75-
<!-- <tr> -->
76-
<!-- <td>Stable</td> -->
77-
<!-- </tr> -->
7873
<tr>
79-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>add('echasnovski/mini-git')</code></td> -->
80-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>add('echasnovski/mini-git')</code></td>
74+
<td>Stable</td>
75+
</tr>
76+
<tr>
77+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>add('echasnovski/mini-git')</code></td>
78+
</tr>
79+
<tr>
80+
<td>Stable</td> <td><code>add({ source = 'echasnovski/mini-git', checkout = 'stable' })</code></td>
8181
</tr>
82-
<!-- <tr> -->
83-
<!-- <td>Stable</td> <td><code>add({ source = 'echasnovski/mini-git', checkout = 'stable' })</code></td> -->
84-
<!-- </tr> -->
8582
</tbody>
8683
</table>
8784
</details>
@@ -96,19 +93,17 @@ Here are code snippets for some common installation methods (use only one):
9693
</thead>
9794
<tbody>
9895
<tr>
99-
<!-- <td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td> -->
100-
<td rowspan=1>'mini.nvim' library</td> <td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
96+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
97+
</tr>
98+
<tr>
99+
<td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td>
101100
</tr>
102-
<!-- <tr> -->
103-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td> -->
104-
<!-- </tr> -->
105101
<tr>
106-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>{ 'echasnovski/mini-git', version = false, main = 'mini.git' },</code></td> -->
107-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>{ 'echasnovski/mini-git', version = false, main = 'mini.git' },</code></td>
102+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>{ 'echasnovski/mini-git', version = false, main = 'mini.git' },</code></td>
103+
</tr>
104+
<tr>
105+
<td>Stable</td> <td><code>{ 'echasnovski/mini-git', version = '*', main = 'mini.git' },</code></td>
108106
</tr>
109-
<!-- <tr> -->
110-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini-git', version = '*', main = 'mini.git' },</code></td> -->
111-
<!-- </tr> -->
112107
</tbody>
113108
</table>
114109
</details>
@@ -123,19 +118,17 @@ Here are code snippets for some common installation methods (use only one):
123118
</thead>
124119
<tbody>
125120
<tr>
126-
<!-- <td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td> -->
127-
<td rowspan=1>'mini.nvim' library</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
121+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
122+
</tr>
123+
<tr>
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-git'</code></td>
128128
</tr>
129-
<!-- <tr> -->
130-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td> -->
131-
<!-- </tr> -->
132129
<tr>
133-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini-git'</code></td> -->
134-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini-git'</code></td>
130+
<td>Stable</td> <td><code>Plug 'echasnovski/mini-git', { 'branch': 'stable' }</code></td>
135131
</tr>
136-
<!-- <tr> -->
137-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini-git', { 'branch': 'stable' }</code></td> -->
138-
<!-- </tr> -->
139132
</tbody>
140133
</table>
141134
</details>

0 commit comments

Comments
 (0)