summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Bradshaw <robertwb@gmail.com>2016-03-11 00:18:54 -0800
committerRobert Bradshaw <robertwb@gmail.com>2016-03-11 00:18:54 -0800
commit3de7bd5559631321c287c8fdd8958b6c494dba5c (patch)
treedf0f506e8efcf69f7c8baab0bfc5a7285c09f4b7
parent12df7f321f170bada046a552997022041e307b5a (diff)
downloadcython-3de7bd5559631321c287c8fdd8958b6c494dba5c.tar.gz
Bump version to 0.24a00.24a0
-rw-r--r--CHANGES.rst13
-rw-r--r--Cython/Shadow.py2
2 files changed, 3 insertions, 12 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index deefd34c9..2ca5da5c1 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,7 +2,7 @@
Cython Changelog
================
-Latest development
+0.24.0 (2016-3-xx)
===================
Features added
@@ -57,20 +57,11 @@ Bugs fixed
* Iteration over ``dict(...).items()`` failed to get optimised when dict
arguments included keyword arguments.
-Other changes
--------------
-
-
-0.23.5 (2015-xx-yy)
-===================
-
-Bugs fixed
-----------
-
* Fix prange() to behave identically to range(). The end condition was
miscalculated when the range was not exactly divisible by the step.
+
0.23.4 (2015-10-10)
===================
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index 5b9d246fc..56b651491 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.24.0a0"
+__version__ = "0.24a0"
try:
from __builtin__ import basestring