summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-05-24 16:18:26 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-05-24 16:18:26 +0200
commit6889482cebefe93d5599b56f3a0389224e92bff5 (patch)
tree83b2e88ccd06447337bff5f0f3784f10983509f0
parent8bc7ca53da0c8dd009c971a30d69504181867b61 (diff)
downloadcython-6889482cebefe93d5599b56f3a0389224e92bff5.tar.gz
Prepare release of Cython 3.0a7.3.0a7
-rw-r--r--CHANGES.rst6
-rw-r--r--Cython/Shadow.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 2e6479b99..c2993ae4a 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,7 +2,7 @@
Cython Changelog
================
-3.0.0 alpha 7 (2020-0?-??)
+3.0.0 alpha 7 (2020-05-24)
==========================
Features added
@@ -94,8 +94,8 @@ Bugs fixed
* Structs could not be instantiated with positional arguments in
pure Python mode.
-* Literal list assignments to pointers declared in PEP-526 notation
- failed to compile.
+* Literal list assignments to pointer variables declared in PEP-526
+ notation failed to compile.
* Nested C++ types were not usable through ctypedefs.
Patch by Vadim Pushtaev. (Github issue :issue:`4039`)
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index 29ae60ad3..f2d2a0f8d 100644
--- a/Cython/Shadow.py
+++ b/Cython/Shadow.py
@@ -1,7 +1,7 @@
# cython.* namespace for pure mode.
from __future__ import absolute_import
-__version__ = "3.0a6"
+__version__ = "3.0a7"
try:
from __builtin__ import basestring