summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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