From b6cb192f29da5af63f252c4f831a0b71f73ac1da Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Wed, 27 Jul 2022 17:07:25 +0200 Subject: Prepare release of 0.29.31. --- CHANGES.rst | 9 ++++++++- Cython/Shadow.py | 2 +- 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 -- cgit v1.2.1