mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-25 14:45:12 +00:00
starting work on the v1.6 release
This commit is contained in:
parent
bb79d7bdc0
commit
54b6fdd43d
@ -7,8 +7,8 @@ To release a new version of pybind11:
|
||||
- ``python setup.py bdist_wheel upload``.
|
||||
- Tag release date in ``doc/changelog.rst``.
|
||||
- Tag the commit and push to anaconda.org
|
||||
- ``git tag -a X.X -m '[Release comment]'``.
|
||||
- ``conda-build conda.recipe --output``
|
||||
- ``git tag -a vX.Y -m 'vX.Y release'``.
|
||||
- ``conda-build conda.recipe``
|
||||
This should ouput the path of the generated tar.bz2 for the package
|
||||
- ``conda-convert --platform all [path/to/tar.bz2] -o .``
|
||||
- ``for i in *-32/* *-64/*; do anaconda upload -u pybind $i; done``
|
||||
|
@ -31,7 +31,7 @@
|
||||
#endif
|
||||
|
||||
#define PYBIND11_VERSION_MAJOR 1
|
||||
#define PYBIND11_VERSION_MINOR 5
|
||||
#define PYBIND11_VERSION_MINOR 6
|
||||
|
||||
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
|
||||
#if defined(_MSC_VER)
|
||||
|
@ -1,2 +1,2 @@
|
||||
version_info = (1, 5)
|
||||
version_info = (1, 6, 'dev0')
|
||||
__version__ = '.'.join(map(str, version_info))
|
||||
|
Loading…
Reference in New Issue
Block a user