summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-07-20 12:01:08 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-07-20 12:06:42 +0200
commitd833d432e56937f488d2d1f8b9f5ca8eebed4a21 (patch)
tree8003f796148adbebc5f6b7629b3ef9bb97e725e7
parent34956983713b6b5c5450bb58bddb0b5408f211a8 (diff)
downloadcython-d833d432e56937f488d2d1f8b9f5ca8eebed4a21.tar.gz
Update changelog.
-rw-r--r--CHANGES.rst12
1 files changed, 12 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 14969b6b7..726e5cad0 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -12,9 +12,21 @@ Features added
were extended.
Patch by David Woods. (Github issues :issue:`4271`, :issue:`4273`)
+* ``cygdb`` has a new option ``--skip-interpreter`` that allows using a different
+ Python runtime than the one used to generate the debugging information.
+ Patch by Alessandro Molina. (Github issue :issue:`4186`)
+
Bugs fixed
----------
+* Several issues with the new ``cpp_locals`` directive were resolved and
+ its test coverage improved.
+ Patch by David Woods. (Github issues :issue:`4266`, :issue:`4265`)
+
+* Generated utility code for C++ conversions no longer depends on several user
+ definable directives that may make it behave incorrectly.
+ Patch by David Woods. (Github issue :issue:`4206`)
+
* A reference counting bug in the new ``@cython.total_ordering`` decorator was fixed.
* Includes all bug-fixes from the :ref:`0.29.24` release.