-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGES.txt
323 lines (198 loc) · 7.91 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
``pkginfo2`` Changelog
=======================
30.0.0 (2022-01-28)
--------------------
- Forked and rename to pkginfo2. Removed ability to import or eval packages
or modules.
- Move the bzr history to git
1.8.2 (2021-12-01)
------------------
- Add fix for installed distributions with '__package__' set to an empty
string. LP #1952946.
1.8.1 (2021-11-19)
------------------
- Add 'MANIFEST.in' to ensure example files used by tests are included
in source distributions. LP #1951553.
1.8.0 (2021-11-18)
------------------
- Support new standard metadata location for installed dists. LP #1865286.
- Don't overwrite header-based 'description' with empty payload. LP #1885458.
- Add support for Metadata-Version 2.2. LP #1928729.
- Add support for uncompressed tarballs for sdists. LP #1951457.
- Add support for Python 3.10.
1.7.1 (2021-07-09)
------------------
- Use Python3 to build docs, and fix doctest examples to use Python3-
compatible syntax. LP #1933322.
1.7.0 (2021-01-16)
------------------
- Add support for Python 3.9.
- Drop support for Python 3.5.
1.6.1 (2020-10-26)
------------------
- Adjust test classifiers to match supported Python versions. LP #1901127.
1.6.0 (2020-10-20)
------------------
- Add support for Python 3.8.
LP #1869854.
- Drop support for Python 3.4.
- Update tests to match setuptools' change, no longer reporting metadata
version for installed packages w/o explicit metadata. LP #1870197.
1.5.0.1 (2019-01-08)
--------------------
- Fix broken 'sdist'. LP #1639585.
1.5.0 (2019-01-07)
------------------
- Fix 'console_scripts' entry point syntax. LP #1810734.
- Add support for JSON output from the CLI. LP #1700580.
- Add support for installed wheels. E.g., 'dist-info/' dirs. LP #1700200.
- Harden metadata extraction against unexpected encodings. LP #1780454.
- Update tests to match pip/setuptools' use of new metadata version.
LP #1772274.
- Add support for Python 3.6 and 3.7.
- Drop support for Python 3.3.
1.4.2 (2018-03-14)
------------------
- Use relative imports in pkginfo modules. Supports vendoring of the
package into setuptools.
- Add support for ``Provides-Extra`` and ``Description-Content-Type`` fields.
Per https://packaging.python.org/specifications/. See: PEP 566.
- Remove support for old setuptools leaving ``PKG-INFO`` in the root of
the project directory.
1.4.1 (2016-11-07)
------------------
- Packaging only change (invalid sdist built for 1.4.0).
1.4.0 (2016-11-04)
------------------
- Relicense under MIT license: the PSF license is not suitable for
third-party libraries.
1.3.2 (2016-05-24)
------------------
- Packaging-only change (automate fix for wheel built for 1.3.1).
1.3.1 (2016-05-24)
------------------
- Packaging-only change (invalid wheel built for 1.3.0).
1.3.0 (2016-05-23)
------------------
- Update homepage URL to point to Launchpad, rather than PyPI.
- Add support for building wheels.
- Add support for Python 3.5.
- Drop support for Python 2.6 and 3.2.
1.2.1 (2014-01-02)
------------------
- Add overlooked Trove classifier for Python 3.4.
1.2 (2014-01-02)
----------------
- Add support for Python 3.4, PyPy3.
- Add 100% coverage for ``pkginfo.commandline`` module.
1.2b1 (2013-12-05)
------------------
- Add support for the "wheel" distribution format, along with minimal
metadata 2.0 support (not including new PEP 426 JSON properties).
Code (re-)borrowed from Donald Stuft's ``twine`` package.
1.1 (2013-10-09)
----------------
- Fix tests to pass with current PyPy releases.
1.1b1 (2013-05-05)
------------------
- Support "develop" packages which keep their ``*.egg-info`` in a subdirectory.
See https://bugs.launchpad.net/pkginfo/+bug/919147.
- Add support for "unpacked SDists" (thanks to Mike Lundy for the patch).
1.0 (2013-05-05)
----------------
- No changes from 1.0b2.
1.0b2 (2012-12-28)
------------------
- Suppress resource warning leaks reported against clients.
- Fix 'commandline' module under Py3k.
1.0b1 (2012-12-28)
------------------
- Add support for Python 3.2 and 3.3, including testing them under ``tox``.
- Add support for PyPy, including testing it under ``tox``.
- Test supported Python versions under ``tox``.
- Drop support for Python 2.5.
- Add a ``setup.py dev`` alias: runs ``setup.py develop`` and installs
testing extras (``nose`` and ``coverage``).
0.9.1 (2012-10-22)
------------------
- Fix test failure under Python >= 2.7, which is enforcing
'metadata_version == 1.1' because we have classifiers.
0.9 (2012-04-25)
----------------
- Fix introspection of installed namespace packages.
They may be installed as eggs or via dist-installed 'egg-info' files.
https://bugs.launchpad.net/pkginfo/+bug/934311
- Avoid a regression in 0.8 under Python 2.6 / 2.7 when parsing unicode.
https://bugs.launchpad.net/pkginfo/+bug/733827/comments/3
0.8 (2011-03-12)
----------------
- Work around Python 2.7's breakage of StringIO. Fixes
https://bugs.launchpad.net/pkginfo/+bug/733827
- Fix bug in introspection of installed packages missing the
``__package__`` attribute.
0.7 (2010-11-04)
----------------
- Preserve newlines in the ``description`` field. Thanks to Sridhar
Ratnakumar for the patch.
- 100% test coverage.
0.6 (2010-06-01)
----------------
- Replace use of ``StringIO.StringIO`` with ``io.StringIO``, where available
(Python >= 2.6).
- Replace use of ``rfc822`` stdlib module with ``email.parser``, when
available (Python >= 2.5). Ensured that distributions "unfold" wrapped
continuation lines, stripping any leading / trailing whitespace, no matter
which module was used for parsing.
- Remove bogus testing dependency on ``zope.testing``.
- Add tests that the "environment markers" spelled out in the approved
PEP 345 are captured.
- Add ``Project-URL`` for ``1.2`` PKG-INFO metdata (defined in the accepted
version of PEP 345).
0.5 (2009-09-11)
----------------
- Marked package as non-zip-safe.
- Fix Trove metadata misspelling.
- Restore compatibility with Python 2.4.
- Note that the introspection of installed packages / modules works only
in Python 2.6 or later.
- Add ``Index`` class as an abstraction over a collection of distributions.
- Add ``download_url_prefix`` argument to ``pkginfo`` script. If passed,
the script will use the prefix to synthesize a ``download_url`` for
distributions which do not supply that value directly.
0.4.1 (2009-05-07)
------------------
- Fix bugs in handling of installed packages which lack ``__file__``
or ``PKG-INFO``.
0.4 (2009-05-07)
----------------
- Extend the console script to allow output as CSV or INI. Also, added
arguments to specify the metadata version and other parsing / output
policies.
- Add support for the different metadata versions specified in PEPs
241, 314, and 345. Distributions now parse and expose only the attributes
corresponding to their metadata version, which defaults to the version
parsed from the ``PKG-INFO`` file. The programmer can override that version
when creating the distribution object.
0.3 (2009-05-07)
----------------
- Add support for introspection of "development eggs" (checkouts with
``PKG-INFO``, perhaps created via ``setup.py develop``).
- Add a console script, ``pkginfo``, which takes one or more paths
on the command line and writes out the associated information. Thanks
to ``runeh`` for the patch!
- Add ``get_metadata`` helper function, which dispatches a given path or
module across the available distribution types, and returns a distribution
object. Thanks to ``runeh`` for the patch!
- Make distribution objects support iteration over the metadata fields.
Thanks to ``runeh`` for the patch!
- Make ``Distribution`` and subclasses new-style classes. Thanks to ``runeh``
for the patch!
0.2 (2009-04-14)
----------------
- Add support for introspection of ``bdist_egg`` binary distributions.
0.1.1 (2009-04-10)
------------------
- Fix packaging errors.
0.1 (2009-04-10)
----------------
- Initial release.