pybind11, version 1.2

This commit is contained in:
Wenzel Jakob 2016-02-07 17:32:37 +01:00
parent 43b6a23a89
commit 8ed2808239
4 changed files with 10 additions and 4 deletions

View File

@ -3,7 +3,11 @@
Changelog Changelog
######### #########
1.2 (not yet released) 1.3 (not yet released)
--------------------------
* TBD
1.2 (February 7, 2016)
-------------------------- --------------------------
* Optional: efficient generation of function signatures at compile time using C++14 * Optional: efficient generation of function signatures at compile time using C++14
@ -34,6 +38,7 @@ Changelog
* Added enum comparison and casting methods * Added enum comparison and casting methods
* Improved SFINAE-based detection of whether types are copy-constructible * Improved SFINAE-based detection of whether types are copy-constructible
* Eliminated many warnings about unused variables and the use of ``offsetof()`` * Eliminated many warnings about unused variables and the use of ``offsetof()``
* Support for ``std::array<>`` conversions
1.1 (December 7, 2015) 1.1 (December 7, 2015)
-------------------------- --------------------------

View File

@ -1,6 +1,7 @@
To release a new version of pybind11: To release a new version of pybind11:
- Update `_version.py` (set release version, remove 'dev') - Update version macros in `include/pybind11/common.h`
- Update `pybind11/_version.py` (set release version, remove 'dev')
- `git add` and `git commit`. - `git add` and `git commit`.
- `python setup.py sdist upload`. - `python setup.py sdist upload`.
- `python setup.py bdist_wheel upload`. - `python setup.py bdist_wheel upload`.

View File

@ -31,7 +31,7 @@
#endif #endif
#define PYBIND11_VERSION_MAJOR 1 #define PYBIND11_VERSION_MAJOR 1
#define PYBIND11_VERSION_MINOR 3 #define PYBIND11_VERSION_MINOR 2
/// 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)

View File

@ -1,2 +1,2 @@
version_info = (1, 2, 'dev0') version_info = (1, 2)
__version__ = '.'.join(map(str, version_info)) __version__ = '.'.join(map(str, version_info))