Commit e85e9d82 by Wenzel Jakob

preparing for v1.6 release

parent fb87dce9
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
Changelog Changelog
######### #########
1.6 (April 28, 2016) 1.6 (April 30, 2016)
---------------------- ----------------------
* Added a new ``move`` return value policy that triggers C++11 move semantics. * Added a new ``move`` return value policy that triggers C++11 move semantics.
The automatic return value policy falls back to this case whenever a rvalue The automatic return value policy falls back to this case whenever a rvalue
...@@ -11,6 +11,7 @@ Changelog ...@@ -11,6 +11,7 @@ Changelog
* Significantly more general GIL state routines that are used instead of * Significantly more general GIL state routines that are used instead of
Python's troublesome ``PyGILState_Ensure`` and ``PyGILState_Release`` API Python's troublesome ``PyGILState_Ensure`` and ``PyGILState_Release`` API
* Redesign of opaque types that drastically simplifies their usage * Redesign of opaque types that drastically simplifies their usage
* Extended ability to pass values of type ``[const] void *``
* ``keep_alive`` fix: don't fail when there is no patient * ``keep_alive`` fix: don't fail when there is no patient
* ``functional.h``: acquire the GIL before calling a Python function * ``functional.h``: acquire the GIL before calling a Python function
* Added Python RAII type wrappers ``none`` and ``iterable`` * Added Python RAII type wrappers ``none`` and ``iterable``
......
version_info = (1, 6, 'dev0') version_info = (1, 6)
__version__ = '.'.join(map(str, version_info)) __version__ = '.'.join(map(str, version_info))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment