From bb79d7bdc0f48f1a9284af85bf36d392afc28307 Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Thu, 21 Apr 2016 12:23:20 +0200 Subject: [PATCH] preparing for version 1.5 release --- docs/changelog.rst | 6 +++++- pybind11/_version.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 80d14a8d..9698c992 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,7 +3,11 @@ 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 * Pickling support for serializing and unserializing C++ instances to a byte stream in Python diff --git a/pybind11/_version.py b/pybind11/_version.py index 93cf8a70..fc9a9cc0 100644 --- a/pybind11/_version.py +++ b/pybind11/_version.py @@ -1,2 +1,2 @@ -version_info = (1, 5, 'dev0') +version_info = (1, 5) __version__ = '.'.join(map(str, version_info))