mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-25 14:45:12 +00:00
starting work on version 1.5
This commit is contained in:
parent
0e6ca5916e
commit
95dc0695b7
@ -10,7 +10,7 @@ To release a new version of pybind11:
|
|||||||
- ``conda-build conda.recipe --output``
|
- ``conda-build conda.recipe --output``
|
||||||
This should ouput the path of the generated tar.bz2 for the package
|
This should ouput the path of the generated tar.bz2 for the package
|
||||||
- ``conda-convert --platform all [path/to/tar.bz2] -o .``
|
- ``conda-convert --platform all [path/to/tar.bz2] -o .``
|
||||||
- For each platform name, ``anaconda-upload -u pybind ./platform/tarfile.tar.bz2``
|
- ``for i in *-32/* *-64/*; do anaconda upload -u pybind $i; done``
|
||||||
- Get back to work
|
- Get back to work
|
||||||
- Update ``_version.py`` (add 'dev' and increment minor).
|
- Update ``_version.py`` (add 'dev' and increment minor).
|
||||||
- Update version macros in ``include/pybind11/common.h``
|
- Update version macros in ``include/pybind11/common.h``
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define PYBIND11_VERSION_MAJOR 1
|
#define PYBIND11_VERSION_MAJOR 1
|
||||||
#define PYBIND11_VERSION_MINOR 4
|
#define PYBIND11_VERSION_MINOR 5
|
||||||
|
|
||||||
/// 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, 4)
|
version_info = (1, 5, 'dev0')
|
||||||
__version__ = '.'.join(map(str, version_info))
|
__version__ = '.'.join(map(str, version_info))
|
||||||
|
Loading…
Reference in New Issue
Block a user