mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-22 13:15:12 +00:00
started working on v1.8
This commit is contained in:
parent
e70b2abb6d
commit
c4d7ccd8b0
@ -3,6 +3,10 @@
|
|||||||
Changelog
|
Changelog
|
||||||
#########
|
#########
|
||||||
|
|
||||||
|
1.8 (April 30, 2016)
|
||||||
|
----------------------
|
||||||
|
TBD
|
||||||
|
|
||||||
1.7 (April 30, 2016)
|
1.7 (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.
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define PYBIND11_VERSION_MAJOR 1
|
#define PYBIND11_VERSION_MAJOR 1
|
||||||
#define PYBIND11_VERSION_MINOR 7
|
#define PYBIND11_VERSION_MINOR 8
|
||||||
|
|
||||||
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
|
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
version_info = (1, 7)
|
version_info = (1, 8, 'dev0')
|
||||||
__version__ = '.'.join(map(str, version_info))
|
__version__ = '.'.join(map(str, version_info))
|
||||||
|
Loading…
Reference in New Issue
Block a user