summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst34
1 files changed, 34 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 07a359d9..b4134436 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,37 @@
+v61.2.0
+-------
+
+
+Changes
+^^^^^^^
+* #3215: Ignored a subgroup of invalid ``pyproject.toml`` files that use the ``[project]``
+ table to specify only ``requires-python`` (**transitional**).
+
+ .. warning::
+ Please note that future releases of setuptools will halt the build process
+ if a ``pyproject.toml`` file that does not match doc:`the PyPA Specification
+ <PyPUG:specifications/declaring-project-metadata>` is given.
+* #3215: Updated ``pyproject.toml`` validation, as generated by ``validate-pyproject==0.6.1``.
+* #3218: Prevented builds from erroring if the project specifies metadata via
+ ``pyproject.toml``, but uses other files (e.g. ``setup.py``) to complement it,
+ without setting ``dynamic`` properly.
+
+ .. important::
+ This is a **transitional** behaviour.
+ Future releases of ``setuptools`` may simply ignore externally set metadata
+ not backed by ``dynamic`` or even halt the build with an error.
+* #3224: Merge changes from pypa/distutils@e1d5c9b1f6
+
+Documentation changes
+^^^^^^^^^^^^^^^^^^^^^
+* #3217: Fixed typo in ``pyproject.toml`` example in Quickstart -- by :user:`pablo-cardenas`.
+
+Misc
+^^^^
+* #3223: Fixed missing requirements with environment markers when
+ ``optional-dependencies`` is set in ``pyproject.toml``.
+
+
v61.1.1
-------