summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2018-04-13 06:58:41 +0200
committerStefan Behnel <stefan_ml@behnel.de>2018-04-13 06:58:41 +0200
commit93e3bb9b7558d597d10c4cb8aa1dd887ed37dc2b (patch)
treed7d3cb1e6f88c40b175e193cab48bdc1c17373f3
parentf1c21d857dfaf6d5b77a7c2cac7744d426353a8a (diff)
downloadcython-93e3bb9b7558d597d10c4cb8aa1dd887ed37dc2b.tar.gz
Prepare release of 0.28.2.0.28.2
-rw-r--r--CHANGES.rst5
-rw-r--r--Cython/Shadow.py2
2 files changed, 5 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 982396072..19f3323b0 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,7 +2,7 @@
Cython Changelog
================
-0.28.2 (2018-??-??)
+0.28.2 (2018-04-13)
===================
Features added
@@ -13,6 +13,9 @@ Features added
* The C++11 methods ``front()`` and ``end()`` were added to the declaration of
``libcpp.string``. Patch by Alex Huszagh. (Github issue #2123)
+* The C++11 methods ``reserve()`` and ``bucket_count()`` are declared for
+ ``std::unordered_map``. Patch by Valentin Valls. (Github issue #2168)
+
Bugs fixed
----------
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index 96d5b1119..8d68bc074 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.28.1"
+__version__ = "0.28.2"
try:
from __builtin__ import basestring