summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2022-07-27 17:07:25 +0200
committerStefan Behnel <stefan_ml@behnel.de>2022-07-27 17:07:25 +0200
commitb6cb192f29da5af63f252c4f831a0b71f73ac1da (patch)
treeaea02038b71a1a6f00c24eb0336e599cbe9a9d28
parent6cede008009c6a5bf5c1414591ca79ec62f56256 (diff)
downloadcython-b6cb192f29da5af63f252c4f831a0b71f73ac1da.tar.gz
Prepare release of 0.29.31.0.29.31
-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