Skip to content

Commit 4ceb045

Browse files
committed
Prepare for 0.12.0 release.
1 parent bdc722e commit 4ceb045

File tree

3 files changed

+61
-93
lines changed

3 files changed

+61
-93
lines changed

readmes/mini-deps.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ end
7676
require('mini.deps').setup({ path = { package = path_package } })
7777
```
7878

79+
Using default 'main' branch is OK, as changes there rarely accidentally break something (so far). However, if you want to be extra safe and use only stable releases of 'mini.nvim', add `MiniDeps.add({ name = 'mini.nvim', checkout = 'stable' })` call after 'mini.deps' is set up and execute `:DepsUpdateOffline mini.nvim`.
80+
7981
To install from standalone repository, replace any occurrence of 'mini.nvim' in the code snippet to 'mini.deps'.
8082

8183
**NOTE**: 'mini.nvim' is installed in 'pack/deps/start' and not 'pack/deps/opt' to always be included in 'mini.deps' session. If you want to make it "opt" plugin (as any other installed plugin), use 'pack/deps/opt' but add `MiniDeps.add('mini.nvim')` call after 'mini.deps' is set up.

readmes/mini-notify.md

Lines changed: 29 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,10 @@ https://github.com/echasnovski/mini.nvim/assets/24854248/81014300-3380-4b8c-9ab5
4040

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

43-
<!-- TODO: Uncomment use of `stable` branch before 0.12.0 release -->
44-
45-
<!-- There are two branches to install from: -->
46-
47-
During beta-testing phase there is only one branch to install from:
43+
There are two branches to install from:
4844

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

5248
Here are code snippets for some common installation methods (use only one):
5349

@@ -56,26 +52,22 @@ Here are code snippets for some common installation methods (use only one):
5652
<table>
5753
<thead>
5854
<tr>
59-
<th>Github repo</th>
60-
<th>Branch</th> <th>Code snippet</th>
55+
<th>Github repo</th> <th>Branch</th> <th>Code snippet</th>
6156
</tr>
6257
</thead>
6358
<tbody>
64-
<!-- <tr> -->
65-
<!-- <td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td rowspan=2><i>Follow recommended 'mini.deps' installation</i></td> -->
66-
<!-- </tr> -->
67-
<!-- <tr> -->
68-
<!-- <td>Stable</td> -->
69-
<!-- </tr> -->
7059
<tr>
71-
<td rowspan=1>'mini.nvim' library</td> <td>Main</td> <td rowspan=1><i>Follow recommended 'mini.deps' installation</i></td>
60+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td rowspan=2><i>Follow recommended 'mini.deps' installation</i></td>
61+
</tr>
62+
<tr>
63+
<td>Stable</td>
7264
</tr>
7365
<tr>
74-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>add('echasnovski/mini.notify')</code></td>
66+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>add('echasnovski/mini.notify')</code></td>
67+
</tr>
68+
<tr>
69+
<td>Stable</td> <td><code>add({ source = 'echasnovski/mini.notify', checkout = 'stable' })</code></td>
7570
</tr>
76-
<!-- <tr> -->
77-
<!-- <td>Stable</td> <td><code>add({ source = 'echasnovski/mini.notify', checkout = 'stable' })</code></td> -->
78-
<!-- </tr> -->
7971
</tbody>
8072
</table>
8173
</details>
@@ -85,27 +77,22 @@ Here are code snippets for some common installation methods (use only one):
8577
<table>
8678
<thead>
8779
<tr>
88-
<th>Github repo</th>
89-
<th>Branch</th> <th>Code snippet</th>
80+
<th>Github repo</th> <th>Branch</th> <th>Code snippet</th>
9081
</tr>
9182
</thead>
9283
<tbody>
9384
<tr>
94-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
95-
<td rowspan=1>'mini.nvim' library</td>
96-
<td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
85+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
86+
</tr>
87+
<tr>
88+
<td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td>
89+
</tr>
90+
<tr>
91+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>{ 'echasnovski/mini.notify', version = false },</code></td>
9792
</tr>
98-
<!-- <tr> -->
99-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td> -->
100-
<!-- </tr> -->
10193
<tr>
102-
<!-- <td rowspan=2>Standalone plugin</td> -->
103-
<td rowspan=1>Standalone plugin</td>
104-
<td>Main</td> <td><code>{ 'echasnovski/mini.notify', version = false },</code></td>
94+
<td>Stable</td> <td><code>{ 'echasnovski/mini.notify', version = '*' },</code></td>
10595
</tr>
106-
<!-- <tr> -->
107-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.notify', version = '*' },</code></td> -->
108-
<!-- </tr> -->
10996
</tbody>
11097
</table>
11198
</details>
@@ -115,26 +102,22 @@ Here are code snippets for some common installation methods (use only one):
115102
<table>
116103
<thead>
117104
<tr>
118-
<th>Github repo</th>
119-
<th>Branch</th> <th>Code snippet</th>
105+
<th>Github repo</th> <th>Branch</th> <th>Code snippet</th>
120106
</tr>
121107
</thead>
122108
<tbody>
123109
<tr>
124-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
125-
<td rowspan=1>'mini.nvim' library</td>
126-
<td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
110+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
111+
</tr>
112+
<tr>
113+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td>
114+
</tr>
115+
<tr>
116+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.notify'</code></td>
127117
</tr>
128-
<!-- <tr> -->
129-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td> -->
130-
<!-- </tr> -->
131118
<tr>
132-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.notify'</code></td> -->
133-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.notify'</code></td>
119+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.notify', { 'branch': 'stable' }</code></td>
134120
</tr>
135-
<!-- <tr> -->
136-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.notify', { 'branch': 'stable' }</code></td> -->
137-
<!-- </tr> -->
138121
</tbody>
139122
</table>
140123
</details>

readmes/mini-visits.md

Lines changed: 30 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Notes:
8282

8383
- Tracking can be disabled by supplying empty string as `track.event`. Then it is up to the user to properly call `MiniVisits.register_visit()`.
8484

85-
### Reusing visits ~
85+
### Reusing visits
8686

8787
Visit data can be reused in at least these ways:
8888

@@ -107,14 +107,10 @@ See `*MiniVisits-examples*` help tag for some actual configuration and workflow
107107

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

110-
<!-- TODO: Uncomment use of `stable` branch before 0.12.0 release -->
111-
112-
<!-- There are two branches to install from: -->
113-
114-
During beta-testing phase there is only one branch to install from:
110+
There are two branches to install from:
115111

116112
- `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).
117-
<!-- - `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch. -->
113+
- `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.
118114

119115
Here are code snippets for some common installation methods (use only one):
120116

@@ -123,26 +119,22 @@ Here are code snippets for some common installation methods (use only one):
123119
<table>
124120
<thead>
125121
<tr>
126-
<th>Github repo</th>
127-
<th>Branch</th> <th>Code snippet</th>
122+
<th>Github repo</th> <th>Branch</th> <th>Code snippet</th>
128123
</tr>
129124
</thead>
130125
<tbody>
131-
<!-- <tr> -->
132-
<!-- <td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td rowspan=2><i>Follow recommended 'mini.deps' installation</i></td> -->
133-
<!-- </tr> -->
134-
<!-- <tr> -->
135-
<!-- <td>Stable</td> -->
136-
<!-- </tr> -->
137126
<tr>
138-
<td rowspan=1>'mini.nvim' library</td> <td>Main</td> <td rowspan=1><i>Follow recommended 'mini.deps' installation</i></td>
127+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td rowspan=2><i>Follow recommended 'mini.deps' installation</i></td>
128+
</tr>
129+
<tr>
130+
<td>Stable</td>
139131
</tr>
140132
<tr>
141-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>add('echasnovski/mini.visits')</code></td>
133+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>add('echasnovski/mini.visits')</code></td>
134+
</tr>
135+
<tr>
136+
<td>Stable</td> <td><code>add({ source = 'echasnovski/mini.visits', checkout = 'stable' })</code></td>
142137
</tr>
143-
<!-- <tr> -->
144-
<!-- <td>Stable</td> <td><code>add({ source = 'echasnovski/mini.visits', checkout = 'stable' })</code></td> -->
145-
<!-- </tr> -->
146138
</tbody>
147139
</table>
148140
</details>
@@ -152,27 +144,22 @@ Here are code snippets for some common installation methods (use only one):
152144
<table>
153145
<thead>
154146
<tr>
155-
<th>Github repo</th>
156-
<th>Branch</th> <th>Code snippet</th>
147+
<th>Github repo</th> <th>Branch</th> <th>Code snippet</th>
157148
</tr>
158149
</thead>
159150
<tbody>
160151
<tr>
161-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
162-
<td rowspan=1>'mini.nvim' library</td>
163-
<td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
152+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
153+
</tr>
154+
<tr>
155+
<td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td>
156+
</tr>
157+
<tr>
158+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>{ 'echasnovski/mini.visits', version = false },</code></td>
164159
</tr>
165-
<!-- <tr> -->
166-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td> -->
167-
<!-- </tr> -->
168160
<tr>
169-
<!-- <td rowspan=2>Standalone plugin</td> -->
170-
<td rowspan=1>Standalone plugin</td>
171-
<td>Main</td> <td><code>{ 'echasnovski/mini.visits', version = false },</code></td>
161+
<td>Stable</td> <td><code>{ 'echasnovski/mini.visits', version = '*' },</code></td>
172162
</tr>
173-
<!-- <tr> -->
174-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.visits', version = '*' },</code></td> -->
175-
<!-- </tr> -->
176163
</tbody>
177164
</table>
178165
</details>
@@ -182,26 +169,22 @@ Here are code snippets for some common installation methods (use only one):
182169
<table>
183170
<thead>
184171
<tr>
185-
<th>Github repo</th>
186-
<th>Branch</th> <th>Code snippet</th>
172+
<th>Github repo</th> <th>Branch</th> <th>Code snippet</th>
187173
</tr>
188174
</thead>
189175
<tbody>
190176
<tr>
191-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
192-
<td rowspan=1>'mini.nvim' library</td>
193-
<td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
177+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
178+
</tr>
179+
<tr>
180+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td>
181+
</tr>
182+
<tr>
183+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.visits'</code></td>
194184
</tr>
195-
<!-- <tr> -->
196-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td> -->
197-
<!-- </tr> -->
198185
<tr>
199-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.visits'</code></td> -->
200-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.visits'</code></td>
186+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.visits', { 'branch': 'stable' }</code></td>
201187
</tr>
202-
<!-- <tr> -->
203-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.visits', { 'branch': 'stable' }</code></td> -->
204-
<!-- </tr> -->
205188
</tbody>
206189
</table>
207190
</details>

0 commit comments

Comments
 (0)