@@ -135,6 +135,7 @@ v1.0.0
135135
1361360.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
1441450.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
1541560.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
1711740.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
1781820.19
179183====
184+
180185* Restrain over-eager egg metadata resolution.
181186* Add support for entry points with colons in the name. Closes #75.
182187
1831880.18
184189====
190+
185191* Parse entry points case sensitively. Closes #68
186192* Add a version constraint on the backport configparser package. Closes #66
187193
1881940.17
189195====
196+
190197* Fix a permission problem in the tests on Windows.
191198
1921990.16
193200====
201+
194202* Don't crash if there exists an EGG-INFO directory on sys.path.
195203
1962040.15
197205====
206+
198207* Fix documentation.
199208
2002090.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
2092190.13
210220====
221+
211222* Update docstrings to match PEP 8. Closes #63.
212223* Merged modules into one module. Closes #62.
213224
2142250.12
215226====
227+
216228* Add support for eggs. !65; Closes #19.
217229
2182300.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
2242370.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
2322460.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
2402550.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
2682840.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
2772940.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
2853030.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
2933120.4
294313===
314+
295315* Housekeeping.
296316
2973170.3
298318===
319+
299320* Added usage documentation. Closes #8
300321* Add support for getting metadata from wheels on ``sys.path ``. Closes #9
301322
3023230.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
3083300.1
309331===
332+
310333* Initial release.
311334
312335
0 commit comments