diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-08-19 16:01:42 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-08-19 16:01:42 -0400 |
| commit | c6d604f053b12920d774324b9fa36211fa9e2eaf (patch) | |
| tree | 201c8290b77836b6fd3d01b060185ad9ad7435ea | |
| parent | 6ae38d0538ceaa9c0360f7f04956acd5e138656d (diff) | |
| download | python-setuptools-git-c6d604f053b12920d774324b9fa36211fa9e2eaf.tar.gz | |
Move changelog into a new release
| -rw-r--r-- | CHANGES.rst | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 10be5821..cd203952 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,18 @@ CHANGES ======= +v25.4.0 +------- + +* Add Extension(py_limited_api=True). When set to a truthy value, + that extension gets a filename apropriate for code using Py_LIMITED_API. + When used correctly this allows a single compiled extension to work on + all future versions of CPython 3. + The py_limited_api argument only controls the filename. To be + compatible with multiple versions of Python 3, the C extension + will also need to set -DPy_LIMITED_API=... and be modified to use + only the functions in the limited API. + v25.3.0 ------- @@ -44,14 +56,6 @@ v25.1.3 * #714 and #704: Revert fix as it breaks other components downstream that can't handle unicode. See #709, #710, and #712. -* Add Extension(py_limited_api=True). When set to a truthy value, - that extension gets a filename apropriate for code using Py_LIMITED_API. - When used correctly this allows a single compiled extension to work on - all future versions of CPython 3. - The py_limited_api argument only controls the filename. To be - compatible with multiple versions of Python 3, the C extension - will also need to set -DPy_LIMITED_API=... and be modified to use - only the functions in the limited API. v25.1.2 ------- |
