summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst9
-rw-r--r--Cython/Shadow.py2
2 files changed, 9 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index a8e02bd8b..9016c1b45 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,9 +2,16 @@
Cython Changelog
================
-0.29.31 (2022-??-??)
+0.29.31 (2022-07-22)
====================
+Features added
+--------------
+
+* A new argument ``--module-name`` was added to the ``cython`` command to
+ provide the (one) exact target module name from the command line.
+ Patch by Matthew Brett and h-vetinari. (Github issue #4906)
+
Bugs fixed
----------
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index f92f9ebf1..60d9c37fd 100644
--- a/Cython/Shadow.py
+++ b/Cython/Shadow.py
@@ -1,7 +1,7 @@
# cython.* namespace for pure mode.
from __future__ import absolute_import
-__version__ = "0.29.30"
+__version__ = "0.29.31"
try:
from __builtin__ import basestring