Commit bb79d7bd by Wenzel Jakob

preparing for version 1.5 release

parent dbe43ffc
...@@ -3,7 +3,11 @@ ...@@ -3,7 +3,11 @@
Changelog Changelog
######### #########
1.5 (not yet released) 1.6 (not yet released)
----------------------
* TBD
1.5 (April 21, 2016)
---------------------- ----------------------
* For polymorphic types, use RTTI to try to return the closest type registered with pybind11 * For polymorphic types, use RTTI to try to return the closest type registered with pybind11
* Pickling support for serializing and unserializing C++ instances to a byte stream in Python * Pickling support for serializing and unserializing C++ instances to a byte stream in Python
......
version_info = (1, 5, 'dev0') version_info = (1, 5)
__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