Commit dd7ec34d by Wenzel Jakob

documentation updates

parent 06f56ee1
Copyright (c) 2015 Wenzel Jakob <wenzel@inf.ethz.ch>, All rights reserved. Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>, All rights reserved.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met: modification, are permitted provided that the following conditions are met:
......
...@@ -3,19 +3,21 @@ ...@@ -3,19 +3,21 @@
Changelog Changelog
######### #########
1.6 (not yet released) 1.6 (April 28, 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 when a rvalue The automatic return value policy falls back to this case whenever a rvalue
reference is encountered reference is encountered
* 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
* ``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 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``
* Added ``*args`` and ``*kwargs`` pass-through parameters to * Added ``*args`` and ``*kwargs`` pass-through parameters to
``pybind11.get_include()`` function ``pybind11.get_include()`` function
* Documentation improvements: ``opaque``, return value policies * Iterator improvements and fixes
* Documentation on return value policies and opaque types improved
1.5 (April 21, 2016) 1.5 (April 21, 2016)
---------------------- ----------------------
......
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