Skip to content

Commit 7e43f60

Browse files
committed
Prepare for 0.8.0 release.
1 parent 0d598d4 commit 7e43f60

File tree

3 files changed

+54
-72
lines changed

3 files changed

+54
-72
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ Introduction of a new module.
5757
- Deleting surrounding which looks like a result of linewise adding will act to revert it: delete lines with surrounding parts and dedent surrounded lines once.
5858
- Blockwise adding places surrounding parts on whole edges, not only start and end of selection.
5959

60+
6061
# Version 0.7.0
6162

6263
- Start dual distribution. Every module is now distributed both as part of 'mini.nvim' library and as standalone plugin (in separate git repository).
@@ -92,6 +93,7 @@ Introduction of a new module.
9293

9394
Introduction of new module.
9495

96+
9597
# Version 0.6.0
9698

9799
- Stop official support of Neovim 0.5.

readmes/mini-bracketed.md

+26-36
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,10 @@ Notes:
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.8.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.bracketed', version = false },</code></td>
10498
</tr>
105-
<!-- <tr> -->
106-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.bracketed', version = '*' },</code></td> -->
107-
<!-- </tr> -->
99+
<tr>
100+
<td>Stable</td> <td><code>{ 'echasnovski/mini.bracketed', 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.bracketed'</code></td> -->
132-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.bracketed'</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.bracketed'</code></td>
125+
</tr>
126+
<tr>
127+
<td>Stable</td> <td><code>use { 'echasnovski/mini.bracketed', branch = 'stable' }</code></td>
133128
</tr>
134-
<!-- <tr> -->
135-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.bracketed', 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.bracketed'</code></td> -->
161-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.bracketed'</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.bracketed'</code></td>
152+
</tr>
153+
<tr>
154+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.bracketed', { 'branch': 'stable' }</code></td>
162155
</tr>
163-
<!-- <tr> -->
164-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.bracketed', { 'branch': 'stable' }</code></td> -->
165-
<!-- </tr> -->
166156
</tbody>
167157
</table>
168158
</details>

readmes/mini-splitjoin.md

+26-36
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,10 @@ Notes:
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.8.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.splitjoin', version = false },</code></td>
9387
</tr>
94-
<!-- <tr> -->
95-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.splitjoin', version = '*' },</code></td> -->
96-
<!-- </tr> -->
88+
<tr>
89+
<td>Stable</td> <td><code>{ 'echasnovski/mini.splitjoin', 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.splitjoin'</code></td> -->
121-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>use 'echasnovski/mini.splitjoin'</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.splitjoin'</code></td>
114+
</tr>
115+
<tr>
116+
<td>Stable</td> <td><code>use { 'echasnovski/mini.splitjoin', branch = 'stable' }</code></td>
122117
</tr>
123-
<!-- <tr> -->
124-
<!-- <td>Stable</td> <td><code>use { 'echasnovski/mini.splitjoin', 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.splitjoin'</code></td> -->
150-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.splitjoin'</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.splitjoin'</code></td>
141+
</tr>
142+
<tr>
143+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.splitjoin', { 'branch': 'stable' }</code></td>
151144
</tr>
152-
<!-- <tr> -->
153-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.splitjoin', { 'branch': 'stable' }</code></td> -->
154-
<!-- </tr> -->
155145
</tbody>
156146
</table>
157147
</details>

0 commit comments

Comments
 (0)