Skip to content

Commit 0992fe4

Browse files
committed
Prepare for 0.9.0 release.
1 parent b1a6d96 commit 0992fe4

File tree

4 files changed

+84
-114
lines changed

4 files changed

+84
-114
lines changed

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- Use `vim.keymap` to deal with mappings. Stop exporting functions only related to mappings.
77
- Add 'randomhue' color scheme.
88

9-
# mini.base16
9+
## mini.base16
1010

1111
- FEATURE: Add new integrations:
1212
- Lsp semantic tokens.
@@ -15,25 +15,25 @@
1515
- 'kevinhwang91/nvim-ufo'.
1616
- BREAKING FEATURE: Stop supporting archived 'p00f/nvim-ts-rainbow' in favor of 'HiPhish/nvim-ts-rainbow2'.
1717

18-
# mini.basics
18+
## mini.basics
1919

2020
- Add dot-repeat support for adding empty lines (`go` and `gO` mappings).
2121

22-
# mini.colors
22+
## mini.colors
2323

2424
Introduction of a new module.
2525

26-
# mini.comment
26+
## mini.comment
2727

2828
- FEATURE: Use tree-sitter information about locally active language to infer 'commentstring' option value.
2929
- FEATURE: Add `options.custom_commentstring` option for a more granular customization of comment structure.
3030
- FEATURE: Add `get_commentstring()` function representing built-in logic of computing relevant 'commentstring'.
3131

32-
# mini.hipatterns
32+
## mini.hipatterns
3333

3434
Introduction of a new module.
3535

36-
# mini.hues
36+
## mini.hues
3737

3838
Introduction of a new module.
3939

readmes/mini-colors.md

Lines changed: 26 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,10 @@ https://user-images.githubusercontent.com/24854248/232283566-9a51fa55-d20a-4650-
6868

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

71-
<!-- TODO: Uncomment use of `stable` branch before 0.9.0 release -->
72-
73-
<!-- There are two branches to install from: -->
74-
75-
During beta-testing phase there is only one branch to install from:
71+
There are two branches to install from:
7672

7773
- `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).
78-
<!-- - `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch. -->
74+
- `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.
7975

8076
Here are code snippets for some common installation methods (use only one):
8177

@@ -90,21 +86,19 @@ Here are code snippets for some common installation methods (use only one):
9086
</thead>
9187
<tbody>
9288
<tr>
93-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
94-
<td rowspan=1>'mini.nvim' library</td>
89+
<td rowspan=2>'mini.nvim' library</td>
9590
<td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
9691
</tr>
97-
<!-- <tr> -->
98-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td> -->
99-
<!-- </tr> -->
10092
<tr>
101-
<!-- <td rowspan=2>Standalone plugin</td> -->
102-
<td rowspan=1>Standalone plugin</td>
93+
<td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td>
94+
</tr>
95+
<tr>
96+
<td rowspan=2>Standalone plugin</td>
10397
<td>Main</td> <td><code>{ 'echasnovski/mini.colors', version = false },</code></td>
10498
</tr>
105-
<!-- <tr> -->
106-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.colors', version = '*' },</code></td> -->
107-
<!-- </tr> -->
99+
<tr>
100+
<td>Stable</td> <td><code>{ 'echasnovski/mini.colors', version = '*' },</code></td>
101+
</tr>
108102
</tbody>
109103
</table>
110104
</details>
@@ -120,20 +114,18 @@ Here are code snippets for some common installation methods (use only one):
120114
</thead>
121115
<tbody>
122116
<tr>
123-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
124-
<td rowspan=1>'mini.nvim' library</td>
117+
<td rowspan=2>'mini.nvim' library</td>
125118
<td>Main</td> <td><code>use 'echasnovski/mini.nvim'</code></td>
126119
</tr>
127-
<!-- <tr> -->
128-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td> -->
129-
<!-- </tr> -->
130120
<tr>
131-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.colors'</code></td> -->
132-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.colors'</code></td>
121+
<td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td>
122+
</tr>
123+
<tr>
124+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.colors'</code></td>
125+
</tr>
126+
<tr>
127+
<td>Stable</td> <td><code>use { 'echasnovski/mini.colors', branch = 'stable' }</code></td>
133128
</tr>
134-
<!-- <tr> -->
135-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.colors', branch = 'stable' }</code></td> -->
136-
<!-- </tr> -->
137129
</tbody>
138130
</table>
139131
</details>
@@ -149,20 +141,18 @@ Here are code snippets for some common installation methods (use only one):
149141
</thead>
150142
<tbody>
151143
<tr>
152-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
153-
<td rowspan=1>'mini.nvim' library</td>
144+
<td rowspan=2>'mini.nvim' library</td>
154145
<td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
155146
</tr>
156-
<!-- <tr> -->
157-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td> -->
158-
<!-- </tr> -->
159147
<tr>
160-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.colors'</code></td> -->
161-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.colors'</code></td>
148+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td>
149+
</tr>
150+
<tr>
151+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.colors'</code></td>
152+
</tr>
153+
<tr>
154+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.colors', { 'branch': 'stable' }</code></td>
162155
</tr>
163-
<!-- <tr> -->
164-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.colors', { 'branch': 'stable' }</code></td> -->
165-
<!-- </tr> -->
166156
</tbody>
167157
</table>
168158
</details>

readmes/mini-hipatterns.md

Lines changed: 26 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,10 @@ hipatterns.setup({
5858

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

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

6763
- `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).
68-
<!-- - `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch. -->
64+
- `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.
6965

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

@@ -80,21 +76,19 @@ Here are code snippets for some common installation methods (use only one):
8076
</thead>
8177
<tbody>
8278
<tr>
83-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
84-
<td rowspan=1>'mini.nvim' library</td>
79+
<td rowspan=2>'mini.nvim' library</td>
8580
<td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
8681
</tr>
87-
<!-- <tr> -->
88-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td> -->
89-
<!-- </tr> -->
9082
<tr>
91-
<!-- <td rowspan=2>Standalone plugin</td> -->
92-
<td rowspan=1>Standalone plugin</td>
83+
<td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td>
84+
</tr>
85+
<tr>
86+
<td rowspan=2>Standalone plugin</td>
9387
<td>Main</td> <td><code>{ 'echasnovski/mini.hipatterns', version = false },</code></td>
9488
</tr>
95-
<!-- <tr> -->
96-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.hipatterns', version = '*' },</code></td> -->
97-
<!-- </tr> -->
89+
<tr>
90+
<td>Stable</td> <td><code>{ 'echasnovski/mini.hipatterns', version = '*' },</code></td>
91+
</tr>
9892
</tbody>
9993
</table>
10094
</details>
@@ -110,20 +104,18 @@ Here are code snippets for some common installation methods (use only one):
110104
</thead>
111105
<tbody>
112106
<tr>
113-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
114-
<td rowspan=1>'mini.nvim' library</td>
107+
<td rowspan=2>'mini.nvim' library</td>
115108
<td>Main</td> <td><code>use 'echasnovski/mini.nvim'</code></td>
116109
</tr>
117-
<!-- <tr> -->
118-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td> -->
119-
<!-- </tr> -->
120110
<tr>
121-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.hipatterns'</code></td> -->
122-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.hipatterns'</code></td>
111+
<td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td>
112+
</tr>
113+
<tr>
114+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.hipatterns'</code></td>
115+
</tr>
116+
<tr>
117+
<td>Stable</td> <td><code>use { 'echasnovski/mini.hipatterns', branch = 'stable' }</code></td>
123118
</tr>
124-
<!-- <tr> -->
125-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.hipatterns', branch = 'stable' }</code></td> -->
126-
<!-- </tr> -->
127119
</tbody>
128120
</table>
129121
</details>
@@ -139,20 +131,18 @@ Here are code snippets for some common installation methods (use only one):
139131
</thead>
140132
<tbody>
141133
<tr>
142-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
143-
<td rowspan=1>'mini.nvim' library</td>
134+
<td rowspan=2>'mini.nvim' library</td>
144135
<td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
145136
</tr>
146-
<!-- <tr> -->
147-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td> -->
148-
<!-- </tr> -->
149137
<tr>
150-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.hipatterns'</code></td> -->
151-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.hipatterns'</code></td>
138+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td>
139+
</tr>
140+
<tr>
141+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.hipatterns'</code></td>
142+
</tr>
143+
<tr>
144+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.hipatterns', { 'branch': 'stable' }</code></td>
152145
</tr>
153-
<!-- <tr> -->
154-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.hipatterns', { 'branch': 'stable' }</code></td> -->
155-
<!-- </tr> -->
156146
</tbody>
157147
</table>
158148
</details>

readmes/mini-hues.md

Lines changed: 26 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,10 @@ Supported highlight groups:
125125

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

128-
<!-- TODO: Uncomment use of `stable` branch before 0.9.0 release -->
129-
130-
<!-- There are two branches to install from: -->
131-
132-
During beta-testing phase there is only one branch to install from:
128+
There are two branches to install from:
133129

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

137133
Here are code snippets for some common installation methods (use only one):
138134

@@ -147,21 +143,19 @@ Here are code snippets for some common installation methods (use only one):
147143
</thead>
148144
<tbody>
149145
<tr>
150-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
151-
<td rowspan=1>'mini.nvim' library</td>
146+
<td rowspan=2>'mini.nvim' library</td>
152147
<td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
153148
</tr>
154-
<!-- <tr> -->
155-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td> -->
156-
<!-- </tr> -->
157149
<tr>
158-
<!-- <td rowspan=2>Standalone plugin</td> -->
159-
<td rowspan=1>Standalone plugin</td>
150+
<td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td>
151+
</tr>
152+
<tr>
153+
<td rowspan=2>Standalone plugin</td>
160154
<td>Main</td> <td><code>{ 'echasnovski/mini.hues', version = false },</code></td>
161155
</tr>
162-
<!-- <tr> -->
163-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.hues', version = '*' },</code></td> -->
164-
<!-- </tr> -->
156+
<tr>
157+
<td>Stable</td> <td><code>{ 'echasnovski/mini.hues', version = '*' },</code></td>
158+
</tr>
165159
</tbody>
166160
</table>
167161
</details>
@@ -177,20 +171,18 @@ Here are code snippets for some common installation methods (use only one):
177171
</thead>
178172
<tbody>
179173
<tr>
180-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
181-
<td rowspan=1>'mini.nvim' library</td>
174+
<td rowspan=2>'mini.nvim' library</td>
182175
<td>Main</td> <td><code>use 'echasnovski/mini.nvim'</code></td>
183176
</tr>
184-
<!-- <tr> -->
185-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td> -->
186-
<!-- </tr> -->
187177
<tr>
188-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.hues'</code></td> -->
189-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.hues'</code></td>
178+
<td>Stable</td> <td><code>use { 'echasnovski/mini.nvim', branch = 'stable' }</code></td>
179+
</tr>
180+
<tr>
181+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.hues'</code></td>
182+
</tr>
183+
<tr>
184+
<td>Stable</td> <td><code>use { 'echasnovski/mini.hues', branch = 'stable' }</code></td>
190185
</tr>
191-
<!-- <tr> -->
192-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.hues', branch = 'stable' }</code></td> -->
193-
<!-- </tr> -->
194186
</tbody>
195187
</table>
196188
</details>
@@ -206,20 +198,18 @@ Here are code snippets for some common installation methods (use only one):
206198
</thead>
207199
<tbody>
208200
<tr>
209-
<!-- <td rowspan=2>'mini.nvim' library</td> -->
210-
<td rowspan=1>'mini.nvim' library</td>
201+
<td rowspan=2>'mini.nvim' library</td>
211202
<td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
212203
</tr>
213-
<!-- <tr> -->
214-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td> -->
215-
<!-- </tr> -->
216204
<tr>
217-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.hues'</code></td> -->
218-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.hues'</code></td>
205+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td>
206+
</tr>
207+
<tr>
208+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.hues'</code></td>
209+
</tr>
210+
<tr>
211+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.hues', { 'branch': 'stable' }</code></td>
219212
</tr>
220-
<!-- <tr> -->
221-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.hues', { 'branch': 'stable' }</code></td> -->
222-
<!-- </tr> -->
223213
</tbody>
224214
</table>
225215
</details>

0 commit comments

Comments
 (0)