summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2018-08-26 08:16:05 +0200
committerStefan Behnel <stefan_ml@behnel.de>2018-08-26 08:16:05 +0200
commit3fa758548a51ccb624d123dcfb3b65a54e6139bb (patch)
tree53d3fd38e6a45efb1e1e3542e712070319a99023
parenta41070c709824fec59f9fa51008a40ff713743a9 (diff)
downloadcython-3fa758548a51ccb624d123dcfb3b65a54e6139bb.tar.gz
Update changelog.
-rw-r--r--CHANGES.rst11
1 files changed, 7 insertions, 4 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 773b407d2..0ef8e297d 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -42,8 +42,8 @@ Features added
* The coverage plugin considers more C file extensions such as ``.cc`` and ``.cxx``.
(Github issue #2266)
-* The `cythonize` command accepts compile time variable values (as set by `DEF`)
- through the new `-E` option.
+* The ``cythonize`` command accepts compile time variable values (as set by ``DEF``)
+ through the new ``-E`` option.
Patch by Jerome Kieffer. (Github issue #2315)
* ``pyximport`` can import from namespace packages.
@@ -52,8 +52,11 @@ Features added
* Some missing numpy and CPython C-API declarations were added.
Patch by John Kirkham. (Github issues #2523, #2520, #2537)
-* Declarations for the `pylifecycle` C-API functions were added in a new .pxd file
- `cpython.pylifecycle`.
+* Declarations for the ``pylifecycle`` C-API functions were added in a new .pxd file
+ ``cpython.pylifecycle``.
+
+* New C macro ``CYTHON_HEX_VERSION`` to access Cython's version in the same style as
+ ``PY_HEX_VERSION``.
Bugs fixed
----------