Prepare changelog entry for version 40.6.0

This commit is contained in:
Paul Ganssle 2018-11-12 12:32:24 -05:00
parent 6f50e58948
commit daa5968f43
No known key found for this signature in database
GPG Key ID: CD54FCE3D964BEFB
17 changed files with 20 additions and 16 deletions

View File

@ -1,3 +1,23 @@
v40.6.0
-------
* #1541: Officially deprecated the ``requires`` parameter in ``setup()``.
* #1519: In ``pkg_resources.normalize_path``, additional path normalization is now performed to ensure path values to a directory is always the same, preventing false positives when checking scripts have a consistent prefix to set up on Windows.
* #1545: Changed the warning class of all deprecation warnings; deprecation warning classes are no longer derived from ``DeprecationWarning`` and are thus visible by default.
* #1554: ``build_meta.build_sdist`` now includes ``setup.py`` in source distributions by default.
* #1576: Started monkey-patching ``get_metadata_version`` and ``read_pkg_file`` onto ``distutils.DistributionMetadata`` to retain the correct version on the ``PKG-INFO`` file in the (deprecated) ``upload`` command.
* #1533: Restricted the ``recursive-include setuptools/_vendor`` to contain only .py and .txt files.
* #1395: Changed Pyrex references to Cython in the documentation.
* #1456: Documented that the ``rpmbuild`` packages is required for the ``bdist_rpm`` command.
* #1537: Documented how to use ``setup.cfg`` for ``src/ layouts``
* #1539: Added minimum version column in ``setup.cfg`` metadata table.
* #1552: Fixed a minor typo in the python 2/3 compatibility documentation.
* #1553: Updated installation instructions to point to ``pip install`` instead of ``ez_setup.py``.
* #1560: Updated ``setuptools`` distribution documentation to remove some outdated information.
* #1564: Documented ``setup.cfg`` minimum version for version and project_urls.
* #1572: Added the ``concurrent.futures`` backport ``futures`` to the Python 2.7 test suite requirements.
v40.5.0
-------

View File

@ -1 +0,0 @@
Document building Cython projects instead of Pyrex

View File

@ -1 +0,0 @@
Documented that the ``rpmbuild`` packages is required for the ``bdist_rpm`` command.

View File

@ -1 +0,0 @@
In ``pkg_resources.normalize_path``, additional path normalization is now performed to ensure path values to a directory is always the same, preventing false positives when checking scripts have a consistent prefix to set up on Windows.

View File

@ -1 +0,0 @@
Converted Python version-specific tests to use ``skipif`` instead of ``xfail``, and removed Python 2.6-specific code from the tests.

View File

@ -1 +0,0 @@
Restrict the `recursive-include setuptools/_vendor` to contain only .py and .txt files

View File

@ -1 +0,0 @@
Document how to use setup.cfg for src/ layouts.

View File

@ -1 +0,0 @@
Added minumum version column in ``setup.cfg`` metadata table.

View File

@ -1 +0,0 @@
Officially deprecated the ``requires`` parameter in ``setup()``.

View File

@ -1 +0,0 @@
Changed the warning class of all deprecation warnings; deprecation warning classes are no longer derived from ``DeprecationWarning`` and are thus visible by default.

View File

@ -1 +0,0 @@
Fixed a minor typo in the python 2/3 compatibility documentation.

View File

@ -1 +0,0 @@
Update installation instructions to point to ``pip install`` instead of ``ez_setup.py``.

View File

@ -1 +0,0 @@
``build_meta.build_sdist`` now includes ``setup.py`` in source distributions by default

View File

@ -1 +0,0 @@
update ``setuptools`` distribution documentation to mimic packaging.python.org tutorial.

View File

@ -1 +0,0 @@
Document setup.cfg minimum version for version and project_urls

View File

@ -1 +0,0 @@
Added the ``concurrent.futures`` backport ``futures`` to the Python 2.7 test suite requirements.

View File

@ -1 +0,0 @@
Started monkey-patching ``get_metadata_version`` and ``read_pkg_file`` onto ``distutils.DistributionMetadata`` to retain the correct version on the ``PKG-INFO`` file in the (deprecated) ``upload`` command.