From e85e9d82824e88352c9389694ff2130e4a6c5d02 Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Sat, 30 Apr 2016 19:58:33 +0200 Subject: [PATCH] preparing for v1.6 release --- docs/changelog.rst | 3 ++- pybind11/_version.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index db765044ac..18e3b1e7f6 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,7 +3,7 @@ Changelog ######### -1.6 (April 28, 2016) +1.6 (April 30, 2016) ---------------------- * 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 @@ -11,6 +11,7 @@ Changelog * Significantly more general GIL state routines that are used instead of Python's troublesome ``PyGILState_Ensure`` and ``PyGILState_Release`` API * 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 * ``functional.h``: acquire the GIL before calling a Python function * Added Python RAII type wrappers ``none`` and ``iterable`` diff --git a/pybind11/_version.py b/pybind11/_version.py index 5e9732019a..c5677b44e7 100644 --- a/pybind11/_version.py +++ b/pybind11/_version.py @@ -1,2 +1,2 @@ -version_info = (1, 6, 'dev0') +version_info = (1, 6) __version__ = '.'.join(map(str, version_info))