Skip to content

Commit 9aee90b

Browse files
committed
Fix syntax in changelog
1 parent 55e64a4 commit 9aee90b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

CHANGES.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ v1.0.0
135135

136136
0.23
137137
====
138+
138139
* Added a compatibility shim to prevent failures on beta releases
139140
of Python before the signature changed to accept the
140141
"context" parameter on find_distributions. This workaround
@@ -143,6 +144,7 @@ v1.0.0
143144

144145
0.22
145146
====
147+
146148
* Renamed ``package`` parameter to ``distribution_name``
147149
as `recommended <https://bugs.python.org/issue34632#msg349423>`_
148150
in the following functions: ``distribution``, ``metadata``,
@@ -153,6 +155,7 @@ v1.0.0
153155

154156
0.21
155157
====
158+
156159
* ``importlib.metadata`` now exposes the ``DistributionFinder``
157160
metaclass and references it in the docs for extending the
158161
search algorithm.
@@ -170,35 +173,42 @@ v1.0.0
170173

171174
0.20
172175
====
176+
173177
* Clarify in the docs that calls to ``.files`` could return
174178
``None`` when the metadata is not present. Closes #69.
175179
* Return all requirements and not just the first for dist-info
176180
packages. Closes #67.
177181

178182
0.19
179183
====
184+
180185
* Restrain over-eager egg metadata resolution.
181186
* Add support for entry points with colons in the name. Closes #75.
182187

183188
0.18
184189
====
190+
185191
* Parse entry points case sensitively. Closes #68
186192
* Add a version constraint on the backport configparser package. Closes #66
187193

188194
0.17
189195
====
196+
190197
* Fix a permission problem in the tests on Windows.
191198

192199
0.16
193200
====
201+
194202
* Don't crash if there exists an EGG-INFO directory on sys.path.
195203

196204
0.15
197205
====
206+
198207
* Fix documentation.
199208

200209
0.14
201210
====
211+
202212
* Removed ``local_distribution`` function from the API.
203213
**This backward-incompatible change removes this
204214
behavior summarily**. Projects should remove their
@@ -208,21 +218,25 @@ v1.0.0
208218

209219
0.13
210220
====
221+
211222
* Update docstrings to match PEP 8. Closes #63.
212223
* Merged modules into one module. Closes #62.
213224

214225
0.12
215226
====
227+
216228
* Add support for eggs. !65; Closes #19.
217229

218230
0.11
219231
====
232+
220233
* Support generic zip files (not just wheels). Closes #59
221234
* Support zip files with multiple distributions in them. Closes #60
222235
* Fully expose the public API in ``importlib_metadata.__all__``.
223236

224237
0.10
225238
====
239+
226240
* The ``Distribution`` ABC is now officially part of the public API.
227241
Closes #37.
228242
* Fixed support for older single file egg-info formats. Closes #43.
@@ -231,6 +245,7 @@ v1.0.0
231245

232246
0.9
233247
===
248+
234249
* Fixed issue where entry points without an attribute would raise an
235250
Exception. Closes #40.
236251
* Removed unused ``name`` parameter from ``entry_points()``. Closes #44.
@@ -239,6 +254,7 @@ v1.0.0
239254

240255
0.8
241256
===
257+
242258
* This library can now discover/enumerate all installed packages. **This
243259
backward-incompatible change alters the protocol finders must
244260
implement to support distribution package discovery.** Closes #24.
@@ -267,6 +283,7 @@ v1.0.0
267283

268284
0.7
269285
===
286+
270287
* Fixed issue where packages with dashes in their names would
271288
not be discovered. Closes #21.
272289
* Distribution lookup is now case-insensitive. Closes #20.
@@ -276,6 +293,7 @@ v1.0.0
276293

277294
0.6
278295
===
296+
279297
* Removed ``importlib_metadata.distribution`` function. Now
280298
the public interface is primarily the utility functions exposed
281299
in ``importlib_metadata.__all__``. Closes #14.
@@ -284,6 +302,7 @@ v1.0.0
284302

285303
0.5
286304
===
305+
287306
* Updated README and removed details about Distribution
288307
class, now considered private. Closes #15.
289308
* Added test suite support for Python 3.4+.
@@ -292,21 +311,25 @@ v1.0.0
292311

293312
0.4
294313
===
314+
295315
* Housekeeping.
296316

297317
0.3
298318
===
319+
299320
* Added usage documentation. Closes #8
300321
* Add support for getting metadata from wheels on ``sys.path``. Closes #9
301322

302323
0.2
303324
===
325+
304326
* Added ``importlib_metadata.entry_points()``. Closes #1
305327
* Added ``importlib_metadata.resolve()``. Closes #12
306328
* Add support for Python 2.7. Closes #4
307329

308330
0.1
309331
===
332+
310333
* Initial release.
311334

312335

0 commit comments

Comments
 (0)